From 5f4745adf4fb2a1f933b25d7a2bc72b39fa9edfd Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 30 Mar 2002 01:02:42 +0000 Subject: Further cleanups for relations in schemas: teach nextval and other sequence functions how to cope with qualified names. Same code is also used for int4notin, currtid_byrelname, pgstattuple. Also, move TOAST tables into special pg_toast namespace. --- src/include/utils/builtins.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/utils/builtins.h') diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index e1343bf4fcd..7bd111cd544 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.173 2002/03/22 02:56:37 tgl Exp $ + * $Id: builtins.h,v 1.174 2002/03/30 01:02:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -410,6 +410,7 @@ extern Datum text_substr(PG_FUNCTION_ARGS); extern Datum name_text(PG_FUNCTION_ARGS); extern Datum text_name(PG_FUNCTION_ARGS); extern int varstr_cmp(char *arg1, int len1, char *arg2, int len2); +extern List *textToQualifiedNameList(text *textval, const char *caller); extern Datum byteain(PG_FUNCTION_ARGS); extern Datum byteaout(PG_FUNCTION_ARGS); -- cgit v1.2.3