]> granicus.if.org Git - postgis/commitdiff
Fixed typo in dropgeometrycolumn() - IS null to =null. This was caused in the
authorDavid Blasby <dblasby@gmail.com>
Thu, 5 Sep 2002 16:39:38 +0000 (16:39 +0000)
committerDavid Blasby <dblasby@gmail.com>
Thu, 5 Sep 2002 16:39:38 +0000 (16:39 +0000)
last 'fix'.

git-svn-id: http://svn.osgeo.org/postgis/trunk@186 b70326c6-7e19-0410-871a-916f4a2858ee

postgis.sql.in

index 86b529759253d214b927e60cd4a036283d205776..a8795abab498fece28ad58e94fdd74a73abead28 100644 (file)
@@ -118,7 +118,7 @@ BEGIN
 
        -- update the given table/column so that it it all NULLS
 
-       EXECUTE ''update ''||table_name||'' set ''||column_name||'' IS NULL'';
+       EXECUTE ''update ''||table_name||'' set ''||column_name||''= NULL'';
 
        -- add = NULL constraint to given table/column