#16455: Postgis 2.0 Compatibility
---------------------------------------+-----------------------------
               Reporter:  ckarrie      |          Owner:  nobody
                   Type:  New feature  |         Status:  new
              Milestone:  1.4          |      Component:  GIS
                Version:  1.3-beta     |       Severity:  Normal
             Resolution:               |       Keywords:  postgis 2.0
           Triage Stage:  Accepted     |      Has patch:  1
    Needs documentation:  0            |    Needs tests:  1
Patch needs improvement:  0            |  Easy pickings:  0
                  UI/UX:  0            |
---------------------------------------+-----------------------------

Comment (by ckarrie):

 To clearify the differece between PostGIS 1.x and 2.0: only the "CREATE
 INDEX"-Part has changed

 1.x:
 {{{
   CREATE INDEX ogna_singlepoint_geom_id
   ON ogna_singlepoint
   USING gist
   (geom GIST_GEOMETRY_OPS);
 }}}

 2.0:
 {{{
   CREATE INDEX ogna_singlepoint_geom_id
   ON ogna_singlepoint
   USING gist
   (geom);
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/16455#comment:5>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to