File: pointcloud_columns.out

package info (click to toggle)
pgpointcloud 1.2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,892 kB
  • sloc: sql: 40,767; ansic: 11,045; xml: 935; makefile: 297; cpp: 282; perl: 248; python: 178; sh: 92
file content (13 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;