1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-17 06:41:09 +03:00

Rename Path.keys to Path.pathkeys. Too many 'keys' used for other things.

This commit is contained in:
Bruce Momjian
1999-02-10 03:52:54 +00:00
parent 318e593f03
commit f859c81c18
22 changed files with 131 additions and 129 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.20 1999/02/09 17:02:49 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.21 1999/02/10 03:52:36 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -212,16 +212,16 @@ print_expr(Node *expr, List *rtable)
}
/*
* print_keys -
* temporary here. where is keys list of list??
* print_pathkeys -
* temporary here. where is keys list of lists
*/
void
print_keys(List *keys, List *rtable)
print_pathkeys(List *pathkeys, List *rtable)
{
List *k;
printf("(");
foreach(k, keys)
foreach(k, pathkeys)
{
Node *var = lfirst((List *) lfirst(k));