]> granicus.if.org Git - postgis/commitdiff
Added 'with oids' specification to create table (oids are used for the test).
authorSandro Santilli <strk@keybit.net>
Mon, 22 May 2006 12:10:58 +0000 (12:10 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 22 May 2006 12:10:58 +0000 (12:10 +0000)
'With oids' was available in postgresql 7.3.4 so we should not be highering
the requirements for topology. Suggestion from Alex Bodnaru.

git-svn-id: http://svn.osgeo.org/postgis/trunk@2363 b70326c6-7e19-0410-871a-916f4a2858ee

topology/test/load_topology.sql

index 049ec43f9ea9624255b47361bb5c807544a58d5b..b33ee4abfab47035d5f30ef1fd02c269bf7c8cfa 100644 (file)
@@ -200,11 +200,11 @@ SELECT setval('city_data.edge_data_edge_id_seq', 26);
 CREATE SCHEMA features;
 
 CREATE TABLE features.land_parcels ( -- Land parcels (selected faces)
-  feature_name VARCHAR PRIMARY KEY);
+  feature_name VARCHAR PRIMARY KEY) with oids;
 CREATE TABLE features.city_streets ( -- City streets (selected edges)
-  feature_name VARCHAR PRIMARY KEY);
+  feature_name VARCHAR PRIMARY KEY) with oids;
 CREATE TABLE features.traffic_signs ( -- Traffic signs (selected nodes)
-  feature_name VARCHAR PRIMARY KEY);
+  feature_name VARCHAR PRIMARY KEY) with oids;