diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2006-02-27 16:09:50 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2006-02-27 16:09:50 +0000 |
| commit | 7f4f42fa100872507ca10d8e0f7d923acc266ee8 (patch) | |
| tree | c297cd70679cb60b470f8199ab707d80de108d5c /contrib/pgstattuple/README.pgstattuple | |
| parent | fe83b3ebc6b8d65fbb14100bdc476b7dbc32454c (diff) | |
| download | postgresql-7f4f42fa100872507ca10d8e0f7d923acc266ee8.tar.gz | |
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/pgstattuple/README.pgstattuple')
| -rw-r--r-- | contrib/pgstattuple/README.pgstattuple | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgstattuple/README.pgstattuple b/contrib/pgstattuple/README.pgstattuple index 3e7facb80f..7395b1ce31 100644 --- a/contrib/pgstattuple/README.pgstattuple +++ b/contrib/pgstattuple/README.pgstattuple @@ -45,11 +45,11 @@ free_percent -- free space in % CREATE OR REPLACE FUNCTION pgstattuple(text) RETURNS pgstattuple_type AS 'MODULE_PATHNAME', 'pgstattuple' - LANGUAGE 'c' STRICT; + LANGUAGE C STRICT; CREATE OR REPLACE FUNCTION pgstattuple(oid) RETURNS pgstattuple_type AS 'MODULE_PATHNAME', 'pgstattuplebyid' - LANGUAGE 'c' STRICT; + LANGUAGE C STRICT; The argument is the table name (optionally it may be qualified) or the OID of the table. Note that pgstattuple only returns |
