diff options
Diffstat (limited to 'phpBB/includes/db/dbal.php')
| -rw-r--r-- | phpBB/includes/db/dbal.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index a2a42e173c..d22d2f0520 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -52,6 +52,15 @@ class dbal // Supports multi inserts? var $multi_insert = false; + // Supports COUNT(DISTINCT ...)? + var $count_distinct = true; + + // Supports multiple table deletion + var $multi_table_deletion = false; + + // Supports table truncation + var $truncate = true; + /** * Current sql layer */ |
