diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-04-18 20:51:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-04-18 20:51:17 +0000 |
commit | 41de1d150761ee15f4af64992ac17680b291fcb6 (patch) | |
tree | cd03021115709d8689fdcad1ae88acff6a848064 | |
parent | 7861d72ea204ef4085861f79f9c1749597160f72 (diff) | |
download | postgresql-41de1d150761ee15f4af64992ac17680b291fcb6.tar.gz postgresql-41de1d150761ee15f4af64992ac17680b291fcb6.zip |
Fix typo.
-rw-r--r-- | contrib/seg/uninstall_seg.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/seg/uninstall_seg.sql b/contrib/seg/uninstall_seg.sql index f706bfb7395..785de039501 100644 --- a/contrib/seg/uninstall_seg.sql +++ b/contrib/seg/uninstall_seg.sql @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/seg/uninstall_seg.sql,v 1.7 2008/04/18 18:43:08 alvherre Exp $ */ +/* $PostgreSQL: pgsql/contrib/seg/uninstall_seg.sql,v 1.8 2008/04/18 20:51:17 tgl Exp $ */ -- Adjust this setting to control where the objects get dropped. SET search_path = public; @@ -51,7 +51,7 @@ DROP OPERATOR <= (seg, seg); DROP OPERATOR < (seg, seg); -DROP FUNCTION seq_center(seg); +DROP FUNCTION seg_center(seg); DROP FUNCTION seg_lower(seg); |