Changes between Version 3 and Version 4 of parcours RHT


Ignore:
Timestamp:
Oct 24, 2011 10:01:55 PM (14 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • parcours RHT

    v3 v4  
    1414        distance bigint); 
    1515copy 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 
     18alter table rht.rht_topology add column chemin ltree; 
     19update rht.rht_topology t set chemin=sub.chemin from ( 
     20select text2ltree(ltreetext) as chemin,id_drain from rht.temp_ltree_distance) as sub 
     21where t.id_drain=sub.id_drain; 
    1622}}}