1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00

Remove second argument from textToQualifiedNameList(), as it is no longer

used. From Jaime Casanova.
This commit is contained in:
Neil Conway
2005-05-27 00:57:49 +00:00
parent 357ea45b57
commit a4374f9070
11 changed files with 26 additions and 37 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/varlena.c,v 1.121 2005/05/20 01:29:55 neilc Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/varlena.c,v 1.122 2005/05/27 00:57:49 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@ -1618,7 +1618,7 @@ name_text(PG_FUNCTION_ARGS)
* truncate names if they're too long.
*/
List *
textToQualifiedNameList(text *textval, const char *caller)
textToQualifiedNameList(text *textval)
{
char *rawname;
List *result = NIL;