mirror of https://github.com/milvus-io/milvus.git
issue: https://github.com/milvus-io/milvus/issues/39818 This PR mimics Varchar data type, allows insert, search, query, delete, full-text search and others. Functionalities related to filter expressions are disabled temporarily. Storage changes for Text data type will be in the following PRs. Signed-off-by: Patrick Weizhi Xu <weizhi.xu@zilliz.com> |
||
---|---|---|
.. | ||
generated | ||
Plan.g4 | ||
README.md | ||
check_identical.go | ||
check_identical_test.go | ||
convert_field_data_to_generic_value.go | ||
convert_field_data_to_generic_value_test.go | ||
error_listener.go | ||
fill_expression_value.go | ||
fill_expression_value_test.go | ||
floating_comparision.go | ||
floating_comparision_test.go | ||
generate.go | ||
generate.sh | ||
logical_expr_visitor.go | ||
node_ret.go | ||
operators.go | ||
parser_visitor.go | ||
pattern_match.go | ||
pattern_match_test.go | ||
plan_parser_v2.go | ||
plan_parser_v2_test.go | ||
pool.go | ||
pool_test.go | ||
show_visitor.go | ||
utils.go | ||
utils_test.go |
README.md
Generate Parser with Antlr4
Install Antlr4
Please follow install antlr4 to install the antlr tool.
The version of antlr tool: 4.13.2
.
Code Generate
After you install the antlr4, you can generate the parser code in golang with:
go generate
All generated code will be under directory generated
.