nebula版本:v3.8.0
部署方式:单机
有个问题想要咨询一下。
在边模型route
中,有个属性定义resid(fixed_string(24))
。对字段创建原生索引的语法为:
create edge index inx_route_resid on route(resid);
但是,通过show create edge index inx_route_resid
,查询出的创建索引的语句如下:
create edge index inx_route_resid on route(resid(24));
查询出的创建索引语句,执行的话,将会报错Unsupported
。能够执行的语句是上面的创建语句。
这个是有意为之的,还是实现中的问题?