• Adrien Crivelli's avatar
    Do not TRIM() parentheses around partial index's conditions · e5e3dbc9
    Adrien Crivelli authored
    Because PostgreSQL will return the expression with a lot of
    parentheses we cannot TRIM() them easily. It is easier and more
    correct to adapt to what PostgreSQL returns. That means the declaration
    of partial indexes must be updated as follow:
    
    Before:
    ``options={"where": "other_id IS NULL"}``
    
    After:
    ``options={"where": "(other_id IS NULL)"}``
    
    And fore more complex conditions, that would be:
    ``options={"where": "(((id IS NOT NULL) AND (other_id IS NULL)) AND (name IS NULL))"}``
    e5e3dbc9
Name
Last commit
Last update
..
Db2SchemaManagerTest.php Loading commit data...
DrizzleSchemaManagerTest.php Loading commit data...
MySqlSchemaManagerTest.php Loading commit data...
OracleSchemaManagerTest.php Loading commit data...
PostgreSqlSchemaManagerTest.php Loading commit data...
SQLAnywhereSchemaManagerTest.php Loading commit data...
SQLServerSchemaManagerTest.php Loading commit data...
SchemaManagerFunctionalTestCase.php Loading commit data...
SqliteSchemaManagerTest.php Loading commit data...