summaryrefslogtreecommitdiff
path: root/lib/pgsqlschema.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-10-18 18:15:58 -0700
committerBrion Vibber <brion@pobox.com>2010-10-18 18:15:58 -0700
commitb865ded7ffca54534dac858f20eada3882af9d04 (patch)
tree09f2d38bd5c8ed9c7e5e1e8f372a41e58fe5a2f2 /lib/pgsqlschema.php
parentebe9972df6c0e20df9ff5d2a6439da1d16c28965 (diff)
Quoting fixes for postgres
Diffstat (limited to 'lib/pgsqlschema.php')
-rw-r--r--lib/pgsqlschema.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pgsqlschema.php b/lib/pgsqlschema.php
index e5442467c..aa7f6733b 100644
--- a/lib/pgsqlschema.php
+++ b/lib/pgsqlschema.php
@@ -342,7 +342,7 @@ class PgsqlSchema extends Schema
*/
function quoteIdentifier($name)
{
- return '"' . $name . '"';
+ return $this->conn->quoteIdentifier($name);
}
function mapType($column)