diff options
Diffstat (limited to 'src/include/parser/parsetree.h')
-rw-r--r-- | src/include/parser/parsetree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parsetree.h b/src/include/parser/parsetree.h index 3f5e09cc1df..277bc32a504 100644 --- a/src/include/parser/parsetree.h +++ b/src/include/parser/parsetree.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsetree.h,v 1.9 2000/02/15 03:38:29 thomas Exp $ + * $Id: parsetree.h,v 1.10 2000/06/12 19:40:51 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -39,7 +39,7 @@ */ #define rt_relname(rt_entry) \ - ((!strcmp(((rt_entry)->ref->relname),"*CURRENT*") ||\ + ((!strcmp(((rt_entry)->ref->relname),"*OLD*") ||\ !strcmp(((rt_entry)->ref->relname),"*NEW*")) ? ((rt_entry)->ref->relname) : \ ((char *)(rt_entry)->relname)) |