Show
Ignore:
Timestamp:
09/26/07 00:11:07 (5 years ago)
Author:
cs186
Message:

California data set, add to README and setup.sql

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hw/hw2/MyStuff/setup.sql

    r33 r46  
    1 create table test(id integer, bounding_box box); 
    2 copy test from 'randomboxes' delimiter ';' ; 
    3 create index boxix on test using gist (bounding_box box_ops); 
     1create table test(id integer, the_box box); 
     2copy test from '/home/cc/cs186/fa07/coass/cs186-XX/Hw2/MyStuff/randomboxes' delimiter ';' ; 
     3create index ix1 on test using gist (the_box box_ops); 
     4create table test25 (id integer, the_box box); 
     5copy test25 from '/home/cc/cs186/fa07/class/cs186-XX/Hw2/MyStuff/randomboxes25' delimiter ';' ; 
     6create index ix2 on test25 using gist (the_box box_ops); 
     7create table cali(location box, name text); 
     8copy cali from  '/home/cc/cs186/fa07/class/cs186-XX/Hw2/MyStuff/cali.txt' delimiter '|'; 
     9create index cali_ix on cali using gist(location box_ops);