-
-
Notifications
You must be signed in to change notification settings - Fork 252
Postgres: Support creating functional indexes #756
Copy link
Copy link
Closed
Description
Motivation
Create functional indexes
for example, a common way to do case-insensitive comparisons is to use the lower function:
SELECT * FROM test1 WHERE lower(col1) = 'value';
This query can use an index, if one has been defined on the result of the lower(column) operation:
CREATE INDEX test1_lower_col1_idx ON test1 (lower(col1));
Proposed Solutions
Additional Information
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels