diff options
author | Peter Eisentraut | 2006-02-27 16:09:50 +0000 |
---|---|---|
committer | Peter Eisentraut | 2006-02-27 16:09:50 +0000 |
commit | 7f4f42fa100872507ca10d8e0f7d923acc266ee8 (patch) | |
tree | c297cd70679cb60b470f8199ab707d80de108d5c /contrib/fulltextindex/fti.c | |
parent | fe83b3ebc6b8d65fbb14100bdc476b7dbc32454c (diff) |
Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, in
particular get rid of single quotes around language names and old WITH ()
construct.
Diffstat (limited to 'contrib/fulltextindex/fti.c')
-rw-r--r-- | contrib/fulltextindex/fti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c index a3ac6da586..9e120dc892 100644 --- a/contrib/fulltextindex/fti.c +++ b/contrib/fulltextindex/fti.c @@ -22,7 +22,7 @@ * * -- Create the SQL function based on the compiled shared object * create function fti() returns trigger as - * '/usr/local/pgsql/lib/contrib/fti.so' language 'C'; + * '/usr/local/pgsql/lib/contrib/fti.so' language C; * * -- Create the FTI table * create table product_fti (string varchar(255), id oid) without oids; |