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 ...
This commit is contained in:
Tom Lane 2000-02-26 06:36:44 +00:00
parent 08b1040374
commit 664908f564
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}