You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, even this implementation is unable to fully cover CREATE INDEX command. For example, such options as [CONCURRENTLY ], [ IF NOT EXISTS ] and [ ONLY ] are not supported with this implementation.
Describe alternatives you've considered
An alternative would be to use object fields to describe index and make it completely compatible with sql CREATE INDEX command: https://www.postgresql.org/docs/current/sql-createindex.html
For instance:
Is your feature request related to a problem? Please describe.
Currently there's no option to add custom indexes as described in Contracts repository:
https://github.com/metarhia/Contracts/blob/c6e6b1053f30924ea002b67a4a2fff30a1a7fe18/doc/Database.md
Describe the solution you'd like
Support for custom index described as a string:
However, even this implementation is unable to fully cover CREATE INDEX command. For example, such options as [CONCURRENTLY ], [ IF NOT EXISTS ] and [ ONLY ] are not supported with this implementation.
Describe alternatives you've considered
An alternative would be to use object fields to describe index and make it completely compatible with sql CREATE INDEX command:
https://www.postgresql.org/docs/current/sql-createindex.html
For instance:
The text was updated successfully, but these errors were encountered: