From 12ae87cd01e8d521de4c5cece0462a90bac5baed Mon Sep 17 00:00:00 2001 From: chriskl Date: Tue, 2 Sep 2003 05:59:50 +0000 Subject: [PATCH] fix pre-7.3 bug --- classes/database/Postgres.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/database/Postgres.php b/classes/database/Postgres.php index 00d4731d..ee9ce2b7 100755 --- a/classes/database/Postgres.php +++ b/classes/database/Postgres.php @@ -4,7 +4,7 @@ * A class that implements the DB interface for Postgres * Note: This class uses ADODB and returns RecordSets. * - * $Id: Postgres.php,v 1.140 2003/08/26 05:59:49 chriskl Exp $ + * $Id: Postgres.php,v 1.141 2003/09/02 05:59:50 chriskl Exp $ */ // @@@ THOUGHT: What about inherits? ie. use of ONLY??? @@ -500,7 +500,7 @@ class Postgres extends BaseDB { $this->clean($table); // @@ Need to add proper comments here - $sql = "SELECT relname AS tablename, tableowner, NULL AS tablecomment FROM pg_tables WHERE tablename='{$table}'"; + $sql = "SELECT tablename, tableowner, NULL AS tablecomment FROM pg_tables WHERE tablename='{$table}'"; return $this->selectSet($sql); } -- 2.39.5