milvus/internal/parser/planparserv2
congqixia 3333160b8d
enhance: Fix lint issues from recent PRs (#34482)
See also #34483
Some lint issues are introduced due to lack of static check run. This PR
fixes these problems.

---------

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2024-07-09 10:06:24 +08:00
..
generated
Plan.g4
README.md
check_identical.go
check_identical_test.go
error_listener.go
floating_comparision.go
floating_comparision_test.go
generate.go
generate.sh
logical_expr_visitor.go
node_ret.go
operators.go
parser_visitor.go enhance: Fix lint issues from recent PRs (#34482) 2024-07-09 10:06:24 +08:00
pattern_match.go
pattern_match_test.go
plan_parser_v2.go enhance: Unify data type check APIs for go (#31887) 2024-04-07 14:27:22 +08:00
plan_parser_v2_test.go feat: [Sparse Float Vector] add sparse vector support to milvus components (#30630) 2024-03-13 14:32:54 -07:00
pool.go enhance: optimize plan parser pool to avoid unnessary recycle (#32869) 2024-05-11 10:51:31 +08:00
pool_test.go enhance: optimize plan parser pool to avoid unnessary recycle (#32869) 2024-05-11 10:51:31 +08:00
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.9.

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.