mirror of
https://github.com/silverstripe/silverstripe-postgresql
synced 2024-10-22 15:05:45 +00:00
This caused tables starting with "sql" to be excluded from the tableList() results, where only "sql_" should be filtered. An unescaped underscore in ANSI SQL pattern matching stands for "any single character", the escape needed to be doubled to account for PHP's own escape expanding. This broke SQLQueryTest since the test data wasn't reset between test runs.