From b865ded7ffca54534dac858f20eada3882af9d04 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 18 Oct 2010 18:15:58 -0700 Subject: [PATCH] Quoting fixes for postgres --- lib/pgsqlschema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pgsqlschema.php b/lib/pgsqlschema.php index e5442467c4..aa7f6733b0 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)