~ubuntu-branches/ubuntu/oneiric/postgis/oneiric-proposed

« back to all changes in this revision

Viewing changes to postgis/postgis.sql.in.c

  • Committer: Bazaar Package Importer
  • Author(s): Alan Boudreault
  • Date: 2010-09-29 09:16:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20100929091610-vj4efw8woq34hdn7
Tags: 1.5.2-1
* New upstream release, with a few bug fixes.
* Added shp2pgsql-gui binary.
* Removed patches, applied upstream: getopt.    

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2
2
--
 
3
-- $Id: postgis.sql.in.c 5876 2010-08-31 18:00:26Z nicklas $
3
4
--
4
5
-- PostGIS - Spatial Types for PostgreSQL
5
6
-- http://postgis.refractions.net
4498
4498
CREATE OR REPLACE FUNCTION ST_Equals(geometry,geometry)
4499
4499
        RETURNS boolean
4500
4500
        AS 'SELECT $1 && $2 AND _ST_Equals($1,$2)'
4501
 
        LANGUAGE 'SQL' IMMUTABLE STRICT;
 
4501
        LANGUAGE 'SQL' IMMUTABLE;
4502
4502
 
4503
4503
 
4504
4504
-----------------------------------------------------------------------