create_misc.out 769 B

123456789101112131415161718192021222324
  1. --
  2. -- CREATE_MISC
  3. --
  4. -- CLASS POPULATION
  5. -- (any resemblance to real life is purely coincidental)
  6. --
  7. INSERT INTO tenk2 SELECT * FROM tenk1;
  8. INSERT INTO hobbies_r (name) VALUES ('skywalking');
  9. INSERT INTO equipment_r (name, hobby) VALUES ('advil', 'posthacking');
  10. INSERT INTO equipment_r (name, hobby) VALUES ('peet''s coffee', 'posthacking');
  11. INSERT INTO equipment_r (name, hobby) VALUES ('hightops', 'basketball');
  12. INSERT INTO equipment_r (name, hobby) VALUES ('guts', 'skywalking');
  13. --
  14. -- for internal portal (cursor) tests
  15. --
  16. CREATE TABLE iportaltest (
  17. i int4,
  18. d float4,
  19. p polygon
  20. );
  21. INSERT INTO iportaltest (i, d, p)
  22. VALUES (1, 3.567, '(3.0,1.0),(4.0,2.0)'::polygon);
  23. INSERT INTO iportaltest (i, d, p)
  24. VALUES (2, 89.05, '(4.0,2.0),(3.0,1.0)'::polygon);