Currently, TableConstrint columns are stored using Set, so the order is determined by Set.toList.
data TableConstraint
= PrimaryKey ConstraintName (Set ColumnName)
| ForeignKey ConstraintName TableName (Set (ColumnName, ColumnName)) ReferenceAction {- onDelete -} ReferenceAction {- onUpdate -}
| Unique ConstraintName (Set ColumnName)
deriving (Show, Eq, Ord, Generic)
This is a critical issue for PrimaryKey and Unique constraints because these constraints create indexes, for which column order is very important. For example, a primary key PRIMARY KEY (a, b, c) creates a unique index that behaves like Haskell type Map A (Map B (Map C Value)). Due to the use of Set, the columns may be out of order. In my project, I saw primary keys in reverse order, equivalent to Haskell type Map C (Map B (Map A Value)). A query to select all values for a given A and B performs well with the correct primary key order, but it performs terribly with the incorrect primary key order.
The use of Set for ForeignKey constraints does not result in incorrect constraints because PostgreSQL supports foreign key constraints with columns in any order. It is best practice to put the columns in natural order, however, so use of Set results in inelegant constraints in the schema.
To fix this issue, I changed all of the TableConstraint constructors to use Vector instead of Set to store the column information. With ordered columns, primary key and unique constraints are correct, and foreign key constraints maintain elegant column order. This is a breaking change; it may change the order of columns in constraints that have more than one column. I will submit a pull request with the fix.
tc-develop Documentation
Currently,
TableConstrintcolumns are stored usingSet, so the order is determined bySet.toList.This is a critical issue for
PrimaryKeyandUniqueconstraints because these constraints create indexes, for which column order is very important. For example, a primary keyPRIMARY KEY (a, b, c)creates a unique index that behaves like Haskell typeMap A (Map B (Map C Value)). Due to the use ofSet, the columns may be out of order. In my project, I saw primary keys in reverse order, equivalent to Haskell typeMap C (Map B (Map A Value)). A query to select all values for a givenAandBperforms well with the correct primary key order, but it performs terribly with the incorrect primary key order.The use of
SetforForeignKeyconstraints does not result in incorrect constraints becausePostgreSQLsupports foreign key constraints with columns in any order. It is best practice to put the columns in natural order, however, so use ofSetresults in inelegant constraints in the schema.To fix this issue, I changed all of the
TableConstraintconstructors to useVectorinstead ofSetto store the column information. With ordered columns, primary key and unique constraints are correct, and foreign key constraints maintain elegant column order. This is a breaking change; it may change the order of columns in constraints that have more than one column. I will submit a pull request with the fix.tc-developDocumentation