[postgis-tickets] r14446 - reverted 2.2.1 foreign table support (not safe for 2.2.1 especially since only compatible with 9.5)

Regina Obe lr at pcorp.us
Fri Nov 27 11:17:28 PST 2015


Author: robe
Date: 2015-11-27 11:17:28 -0800 (Fri, 27 Nov 2015)
New Revision: 14446

Modified:
   branches/2.2/postgis/postgis.sql.in
Log:
reverted 2.2.1 foreign table support (not safe for 2.2.1 especially since only compatible with 9.5)
references #3340

Modified: branches/2.2/postgis/postgis.sql.in
===================================================================
--- branches/2.2/postgis/postgis.sql.in	2015-11-27 18:10:43 UTC (rev 14445)
+++ branches/2.2/postgis/postgis.sql.in	2015-11-27 19:17:28 UTC (rev 14446)
@@ -1922,7 +1922,7 @@
 		 pg_attribute a,
 		 pg_type t,
 		 pg_namespace n
-	WHERE c.relkind IN('r','v','f')
+	WHERE c.relkind IN('r','v')
 		AND t.typname = 'geometry'
 		AND a.attisdropped = false
 		AND a.atttypid = t.oid
@@ -1939,7 +1939,7 @@
 			 pg_attribute a,
 			 pg_type t,
 			 pg_namespace n
-		WHERE c.relkind IN( 'r', 'f')
+		WHERE c.relkind IN( 'r')
 		AND t.typname = 'geometry'
 		AND a.attisdropped = false
 		AND a.atttypid = t.oid
@@ -2010,7 +2010,7 @@
 			 pg_attribute a,
 			 pg_type t,
 			 pg_namespace n
-		WHERE c.relkind IN('r', 'f')
+		WHERE c.relkind IN('r')
 		AND t.typname = 'geometry'
 		AND a.attisdropped = false
 		AND a.atttypid = t.oid



More information about the postgis-tickets mailing list