Changes between Version 3 and Version 4 of parcours RHT
- Timestamp:
- Oct 24, 2011 10:01:55 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
parcours RHT
v3 v4 14 14 distance bigint); 15 15 copy rht.temp_ltree_distance from 'E:/workspace/EDAdata/dataEDArht/rht_ltree_distance.csv' with csv header delimiter as ';' NULL AS 'NA';--114600 16 17 -- lancer le script ltree.sql qui se trouve dans postgres/share 18 alter table rht.rht_topology add column chemin ltree; 19 update rht.rht_topology t set chemin=sub.chemin from ( 20 select text2ltree(ltreetext) as chemin,id_drain from rht.temp_ltree_distance) as sub 21 where t.id_drain=sub.id_drain; 16 22 }}}