diff options
| author | Bruce Momjian <bruce@momjian.us> | 2005-07-06 19:02:54 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2005-07-06 19:02:54 +0000 |
| commit | a9236028554ca0e11797c887373c1a34800a4fa6 (patch) | |
| tree | 58e500e5de9b36e88dbab01d73d208e20b30161e /src/include/utils/builtins.h | |
| parent | b9cb1326481302719ad8bdad6b6247bca42a629b (diff) | |
| download | postgresql-a9236028554ca0e11797c887373c1a34800a4fa6.tar.gz | |
Add pg_column_size() to return storage size of a column, including
possible compression.
Mark Kirkwood
Diffstat (limited to 'src/include/utils/builtins.h')
| -rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 37423dc73c..fea496aaae 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.258 2005/06/17 22:32:50 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.259 2005/07/06 19:02:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -601,6 +601,7 @@ extern Datum byteacat(PG_FUNCTION_ARGS); extern Datum byteapos(PG_FUNCTION_ARGS); extern Datum bytea_substr(PG_FUNCTION_ARGS); extern Datum bytea_substr_no_len(PG_FUNCTION_ARGS); +extern Datum pg_column_size(PG_FUNCTION_ARGS); /* version.c */ extern Datum pgsql_version(PG_FUNCTION_ARGS); |
