Moving form oracle to cockroach-db, I’m using a index creating command as bellow:
CREATE INDEX ON “sales” (substring(“a”,0,19), substring(“b”,20,2), “c”);
The error I get is:
invalid syntax: statement ignored: unimplemented at or near ")"
CREATE INDEX ON “sales” (substring(“a”,0,19), substring(“b”,20,2), “c”);
^
I have also used, substr, but the error is the same.