diff options
author | Itagaki Takahiro <itagaki.takahiro@gmail.com> | 2010-08-24 06:30:44 +0000 |
---|---|---|
committer | Itagaki Takahiro <itagaki.takahiro@gmail.com> | 2010-08-24 06:30:44 +0000 |
commit | 49b27ab55149ade3b00de782be7ef53b4f9722c9 (patch) | |
tree | d308542d4a68e3a5a52726f7e057b03175f0b5e7 /src/include/utils/builtins.h | |
parent | b9defe0405606e1e63a708078757c03451b0c111 (diff) | |
download | postgresql-49b27ab55149ade3b00de782be7ef53b4f9722c9.tar.gz postgresql-49b27ab55149ade3b00de782be7ef53b4f9722c9.zip |
Add string functions: concat(), concat_ws(), left(), right(), and reverse().
Pavel Stehule, reviewed by me.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 258a3749430..4612cb35430 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.354 2010/08/10 21:51:00 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.355 2010/08/24 06:30:44 itagaki Exp $ * *------------------------------------------------------------------------- */ @@ -733,6 +733,12 @@ extern Datum pg_column_size(PG_FUNCTION_ARGS); extern Datum string_agg_transfn(PG_FUNCTION_ARGS); extern Datum string_agg_finalfn(PG_FUNCTION_ARGS); +extern Datum text_concat(PG_FUNCTION_ARGS); +extern Datum text_concat_ws(PG_FUNCTION_ARGS); +extern Datum text_left(PG_FUNCTION_ARGS); +extern Datum text_right(PG_FUNCTION_ARGS); +extern Datum text_reverse(PG_FUNCTION_ARGS); + /* version.c */ extern Datum pgsql_version(PG_FUNCTION_ARGS); |