Bugfix (bug by me in 1.4) in backparsing INSERT ... SELECT

Jan
This commit is contained in:
Jan Wieck 1999-04-29 15:52:01 +00:00
parent 99f61dac7e
commit 7d62e9c719
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
* out of it's tuple * out of it's tuple
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/ruleutils.c,v 1.8 1999/01/25 18:02:23 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/ruleutils.c,v 1.9 1999/04/29 15:52:01 wieck Exp $
* *
* This software is copyrighted by Jan Wieck - Hamburg. * This software is copyrighted by Jan Wieck - Hamburg.
* *
@ -1117,7 +1117,7 @@ get_insert_query_def(Query *query, QryHier *qh)
strcat(buf, ")"); strcat(buf, ")");
} }
else else
strcat(buf, get_query_def(query, qh)); strcat(buf, get_select_query_def(query, qh));
/* ---------- /* ----------
* Copy the query string into allocated space and return it * Copy the query string into allocated space and return it