package org.geotools.data.ingres; import org.geotools.jdbc.JDBCViewTestSetup; public class IngresViewTestSetup extends JDBCViewTestSetup { protected IngresViewTestSetup() { super(new IngresTestSetup()); } @Override protected void createLakesTable() throws Exception { run("CREATE TABLE \"lakes\"(\"fid\" int primary key, \"id\" int, " + "\"geom\" POLYGON SRID 4326, \"name\" varchar(256) )"); run("INSERT INTO \"lakes\" (\"fid\", \"id\",\"geom\",\"name\") VALUES (0, 0," + "GeomFromText('POLYGON((12 6, 14 8, 16 6, 16 4, 14 4, 12 6))',4326)," + "'muddy')"); } @Override protected void dropLakesTable() throws Exception { runSafe("DROP TABLE \"lakes\""); } @Override protected void createLakesView() throws Exception { run("create view \"lakesview\" as select * from \"lakes\""); // disabled insert to make sure views work even without geom column declarations // run("INSERT INTO GEOMETRY_COLUMNS VALUES('', 'public', 'lakesview', 'geom', 2, '4326', 'POLYGON')"); } @Override protected void dropLakesView() throws Exception { runSafe("DROP VIEW \"lakesview\""); } @Override protected void createLakesViewPk() throws Exception { // TODO Auto-generated method stub } @Override protected void dropLakesViewPk() throws Exception { // TODO Auto-generated method stub } }