Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e5fbe30

Browse files
committed
pname=NULL -> pname="" (stringinfo.c:appendStringInfo doesn't like NULL).
1 parent f2af019 commit e5fbe30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/explain.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/explain.c,v 1.4 1996/11/06 08:21:35 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/explain.c,v 1.5 1996/12/03 05:50:11 vadim Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -159,7 +159,7 @@ explain_outNode(StringInfo str, Plan *plan, int indent, ExplainState *es)
159159
pname = "Tee";
160160
break;
161161
default:
162-
pname = NULL;
162+
pname = "";
163163
break;
164164
}
165165

0 commit comments

Comments
 (0)