Commit 664908f5 authored by Tom Lane's avatar Tom Lane

Undo a couple of mistaken applications of NameStr() to StringInfos.

It worked, because they both have fields named 'data', but it's surely
trouble waiting to happen.  I wonder whether there are more ...
parent 08b10403
......@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteDefine.c,v 1.42 2000/01/27 18:11:36 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteDefine.c,v 1.43 2000/02/26 06:36:44 tgl Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -119,9 +119,9 @@ InsertRule(char *rulname,
appendStringInfo(&rulebuf, "::text, '%s'::bool);",
is_instead);
pg_exec_query_dest(NameStr(rulebuf), None, true);
pg_exec_query_dest(rulebuf.data, None, true);
pfree(NameStr(rulebuf));
pfree(rulebuf.data);
return LastOidProcessed;
}
......
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