mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
88f5642603
**What type of PR is this?** - [x] Feature **What this PR does / why we need it:** This PR supports boolean expression as DSL. 1. The goal of this PR is to support predicates like `A > 3 && not B < 5 or C in [1, 2, 3]`. 2. Defines `plan.proto`, as Intermediate Representation (IR) used between go and cpp. 3. Support expr parser, convert predicate expr to IR in proxynode, while doing static check there 4. Support IR to AST in cpp, enable the execution
56 lines
1.7 KiB
Bash
Executable File
56 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
SCRIPTS_DIR=$(dirname "$0")
|
|
|
|
PROTO_DIR=$SCRIPTS_DIR/../internal/proto/
|
|
|
|
PROGRAM=$(basename "$0")
|
|
GOPATH=$(go env GOPATH)
|
|
|
|
if [ -z $GOPATH ]; then
|
|
printf "Error: the environment variable GOPATH is not set, please set it before running %s\n" $PROGRAM > /dev/stderr
|
|
exit 1
|
|
fi
|
|
|
|
export PATH=${GOPATH}/bin:$PATH
|
|
echo `which protoc-gen-go`
|
|
|
|
# official go code ship with the crate, so we need to generate it manually.
|
|
pushd ${PROTO_DIR}
|
|
|
|
mkdir -p commonpb
|
|
mkdir -p schemapb
|
|
mkdir -p etcdpb
|
|
mkdir -p indexcgopb
|
|
|
|
mkdir -p internalpb
|
|
mkdir -p milvuspb
|
|
mkdir -p masterpb
|
|
|
|
|
|
mkdir -p milvuspb
|
|
mkdir -p proxypb
|
|
|
|
mkdir -p indexpb
|
|
mkdir -p datapb
|
|
mkdir -p querypb
|
|
mkdir -p planpb
|
|
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./commonpb common.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./schemapb schema.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./etcdpb etcd_meta.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./indexcgopb index_cgo_msg.proto
|
|
|
|
#${protoc} --go_out=plugins=grpc,paths=source_relative:./internalpb internal_msg.proto
|
|
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./masterpb master.proto
|
|
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./internalpb internal.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./milvuspb milvus.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./proxypb proxy_service.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./indexpb index_service.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./datapb data_service.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./querypb query_service.proto
|
|
${protoc} --go_out=plugins=grpc,paths=source_relative:./planpb plan.proto
|
|
|
|
popd
|