pointcloud/pgsql/expected/pointcloud_columns.out
2015-02-10 10:41:26 +01:00

14 lines
461 B
Plaintext

INSERT INTO pointcloud_formats (pcid, srid) VALUES (777, 666);
CREATE TABLE pc1(p pcpoint);
CREATE TABLE pc2(p pcpoint);
DELETE FROM pointcloud_formats WHERE pcid = 777;
SELECT * from pointcloud_columns ORDER BY 1,2,3,4;
schema | table | column | pcid | srid | type
--------+-------+--------+------+------+---------
public | pc1 | p | | | pcpoint
public | pc2 | p | | | pcpoint
(2 rows)
DROP TABLE pc1;
DROP TABLE pc2;