-
-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Labels
Description
Follows on from #2206 and may be a duplicate of #2250 (I will let you decide and merge or close one duplicate if they are the same issue).
I am trying to run my team's existing PostgreSQL migrations to evaluate if Doltgres can work for our product.
I hit this blocker: error: expression index attribute is not yet supported.
To reproduce:
CREATE DATABASE testdb;
CREATE TABLE t (a TEXT);
CREATE INDEX i ON t (lower(a));
-> error: expression index attribute is not yet supported.
This does work:
CREATE INDEX i ON t (a);
Is it possible to support this so I can run our pre-existing migration scripts? Thank you!
Reactions are currently unavailable