vesoft-inc / nebula

A distributed, fast open-source graph database featuring horizontal scalability and high availability
https://nebula-graph.io
Apache License 2.0
10.86k stars 1.21k forks source link

A issue about "show create edge index" #5966

Open maslke opened 3 weeks ago

maslke commented 3 weeks ago

Nebula version: v3.8.0 Deployment method: Standalone

In the edge route, there is a property defined as resid(fixed_string(24)). The syntax for creating a native index on this field is:

create edge index inx_route_resid on route(resid);

However, when querying the created edge index using show create edge index inx_route_resid, the returned create index statement is as follows:

create edge index inx_route_resid on route(resid(24));

Executing this returned create index statement will result in an error: Unsupported. The executable statement is the one mentioned above.