Open maslke opened 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:
route
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.
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:However, when querying the created edge index using show create edge index inx_route_resid, the returned create index statement is as follows:
Executing this returned create index statement will result in an error: Unsupported. The executable statement is the one mentioned above.