QGIS/tests/testdata/provider/testdata_pg_raster.sql
Sandro Santilli f543a9abb7 Add test for TopoGeometry layers visibility with and w/out permissions
Adds a "qgis_test_user" database users with the db setup script,
using an hard-coded password for connection.

This was the simplest way to make things work because the alternative
of using 'options' member in the URI is not supported by QGIS
at the moment, see https://github.com/qgis/QGIS/issues/32832
2019-11-15 13:14:42 +01:00

27 lines
552 B
SQL

DO $$
BEGIN
IF EXISTS ( SELECT * FROM pg_catalog.pg_available_extensions
WHERE name = 'postgis_raster' )
THEN
RAISE NOTICE 'Loading postgis_raster';
CREATE EXTENSION IF NOT EXISTS postgis_raster;
END IF;
END;
$$;
-- Table: qgis_test.Raster1
CREATE TABLE qgis_test."Raster1"
(
pk serial NOT NULL,
name character varying(255),
"Rast" raster
);
INSERT INTO qgis_test."Raster1" (name, "Rast") SELECT
'simple one',
ST_AddBand(
ST_MakeEmptyRaster(16, 32, 7, -5, 0.2, -0.7, 0, 0, 0),
1, '8BUI', 0.0, NULL
);