mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-04 00:30:59 -05:00
12 lines
651 B
SQL
12 lines
651 B
SQL
|
|
--
|
|
-- in-db float 32 raster with no constraints
|
|
--
|
|
|
|
DROP TABLE IF EXISTS "public"."raster_3035_no_constraints" CASCADE;
|
|
|
|
CREATE TABLE "raster_3035_no_constraints" ("rid" serial PRIMARY KEY,"rast" raster);
|
|
INSERT INTO "raster_3035_no_constraints" ("rast") VALUES ('0100000100000000000000394000000000000039C000000000D9204F41000000008F8B424100000000000000000000000000000000DB0B0000060005004A003C1CC66A610843880B0E431CC2194306342543B7633C43861858436E0A1143BBAD194359612743A12B334317BE4343DECE59432B621B43F0E42843132B3843AC824043E6CF48436E465A435C4D2D430FA63D43F87A4843B5494A4349454E4374F35B43906E41433AB54C43B056504358575243B1EC574322615F43'::raster);
|
|
|
|
|