[postgis-commits] svn - r2720 - branches/gSoC2007/lwgeom

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Thu Nov 29 18:37:11 PST 2007


Author: yecarrillo
Date: 2007-11-29 18:37:10 -0800 (Thu, 29 Nov 2007)
New Revision: 2720

Modified:
   branches/gSoC2007/lwgeom/lwpostgis.sql.in
Log:
Added materialized_views table

Modified: branches/gSoC2007/lwgeom/lwpostgis.sql.in
===================================================================
--- branches/gSoC2007/lwgeom/lwpostgis.sql.in	2007-11-27 22:39:06 UTC (rev 2719)
+++ branches/gSoC2007/lwgeom/lwpostgis.sql.in	2007-11-30 02:37:10 UTC (rev 2720)
@@ -1556,6 +1556,21 @@
 		f_geometry_column )
 ) WITH OIDS;
 
+-------------------------------------------------------------------
+-- MATERIALIZED_VIEWS
+-------------------------------------------------------------------
+CREATE TABLE materialized_views (
+	view_catalog varchar(256) not null,
+	view_schema varchar(256) not null,
+	view_name varchar(256) not null,
+	matview_name varchar(256) not null,
+	CONSTRAINT materialized_views_pk primary key ( 
+		view_catalog, 
+		view_schema, 
+		view_name, 
+		matview_name )
+) WITH OIDS;
+
 -----------------------------------------------------------------------
 -- RENAME_GEOMETRY_TABLE_CONSTRAINTS()
 -----------------------------------------------------------------------



More information about the postgis-commits mailing list