ArcadeDB Version:
ArcadeDB Server v24.6.1-SNAPSHOT (build c95953f/1718719426891/main)
OS and JDK Version:
Standard docker image from DockerHub
Expected behavior
Create the named index
Actual behavior
When providing a manual-index-name for an index, the command fails. According to documentation, this should work.
Steps to reproduce
Works fine without an index name: CREATE INDEX ON IsActiveOn (@out, @in) NOTUNIQUE;
Fails with an index name: CREATE INDEX IsActiveOn_out_in ON IsActiveOn (@out, @in) NOTUNIQUE;
ArcadeDB Version:
ArcadeDB Server v24.6.1-SNAPSHOT (build c95953f/1718719426891/main)
OS and JDK Version:
Standard docker image from DockerHub
Expected behavior
Create the named index
Actual behavior
When providing a manual-index-name for an index, the command fails. According to documentation, this should work.
Steps to reproduce
Works fine without an index name: CREATE INDEX ON IsActiveOn (
@out,@in) NOTUNIQUE;Fails with an index name: CREATE INDEX IsActiveOn_out_in ON IsActiveOn (
@out,@in) NOTUNIQUE;