Commit 7d62e9c7 authored by Jan Wieck's avatar Jan Wieck

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

Jan
parent 99f61dac
...@@ -3,7 +3,7 @@ ...@@ -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) ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment