SELECT * FROM isn't that innocuous, changed to SELECT 1
diff --git a/system/database/drivers/postgre/postgre_forge.php b/system/database/drivers/postgre/postgre_forge.php
index 166cc4e..ddbce60 100644
--- a/system/database/drivers/postgre/postgre_forge.php
+++ b/system/database/drivers/postgre/postgre_forge.php
@@ -83,7 +83,7 @@
 		{
 			if ($this->db->table_exists($table))
 			{
-				return "SELECT * FROM $table"; // Needs to return innocous but valid SQL statement
+				return "SELECT 1"; // Needs to return innocous but valid SQL statement
 			}
 		}