Skip to content

Commit

Permalink
change "install_fesql.sh" to "install_hybridse.sh"
Browse files Browse the repository at this point in the history
  • Loading branch information
jingchen2222 committed Mar 19, 2021
1 parent 66de1cc commit cc8dd5b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ git clone https://github.com/4paradigm/fedb.git
docker run -v \`pwd\`/fedb:/fedb -it FEDB-docker bash
cd /fedb
git submodule init fesql && git submodule update fesql
sh tools/install_fesql.sh
sh tools/install_hybridse.sh
mkdir -p build && cmake ../ && make -j5 fedb
```
### 示例
Expand Down
2 changes: 1 addition & 1 deletion steps/fesql_auto_gen_test_by_fedb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cd fesql
sh tools/gen_auto_case.sh
cd ..

sh tools/install_fesql.sh ON
sh tools/install_hybridse.sh ON
cd ${ROOT_DIR}/fesql/java/hybridse-common; mvn install
mkdir -p ${ROOT_DIR}/build && cd ${ROOT_DIR}/build && cmake ..
if [ -z "${FEDEV}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion steps/fesql_auto_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ROOT_DIR=`pwd`
ulimit -c unlimited

echo "ROOT_DIR:${ROOT_DIR}"
sh tools/install_fesql.sh ON
sh tools/install_hybridse.sh ON
cd ${ROOT_DIR}/fesql/java/hybridse-common; mvn install

mkdir -p ${ROOT_DIR}/build && cd ${ROOT_DIR}/build && cmake ..
Expand Down
2 changes: 1 addition & 1 deletion steps/fesql_auto_test_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if [[ "${CASE_LEVEL}" == "" ]]; then
fi
echo "fesql auto test cluster: case_level ${CASE_LEVEL}"
echo "ROOT_DIR:${ROOT_DIR}"
sh tools/install_fesql.sh ON
sh tools/install_hybridse.sh ON
cd ${ROOT_DIR}/fesql/java/hybridse-common; mvn install

mkdir -p ${ROOT_DIR}/build && cd ${ROOT_DIR}/build && cmake ..
Expand Down
2 changes: 1 addition & 1 deletion steps/package_fedb_javasdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ WORKDIR=`pwd`
set -e
sdk_vesion=$1-SNAPSHOT
mkdir -p src/sdk/java/sql-native/src/main/resources/
sh tools/install_fesql.sh ON
sh tools/install_hybridse.sh ON
test -f build/src/sdk/libsql_jsdk.dylib && cp build/src/sdk/libsql_jsdk.dylib src/sdk/java/sql-native/src/main/resources/
mkdir -p build && cd build && cmake .. && make -j4 sql_jsdk
cd ${WORKDIR}
Expand Down
2 changes: 1 addition & 1 deletion tools/install_hybridse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# install_fesql.sh
# install_hybridse.sh
ENABLE_JAVA=$1
CMAKE_TYPE=$2

Expand Down

0 comments on commit cc8dd5b

Please sign in to comment.