|
7 | 7 | * Portions Copyright (c) 1996-2000, PostgreSQL, Inc |
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | 9 | * |
10 | | - * $Id: execdebug.h,v 1.12 2000/01/26 05:58:05 momjian Exp $ |
| 10 | + * $Id: execdebug.h,v 1.13 2000/06/15 00:52:07 momjian Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
14 | 14 | #ifndefEXECDEBUG_H |
15 | 15 | #defineEXECDEBUG_H |
16 | 16 |
|
| 17 | +#include"executor/executor.h" |
17 | 18 | #include"nodes/print.h" |
18 | 19 |
|
19 | 20 | /* ---------------------------------------------------------------- |
@@ -227,8 +228,8 @@ extern intNIndexTupleInserted; |
227 | 228 | #defineEU_nodeDisplay(l)nodeDisplay(l) |
228 | 229 | #defineEU_printf(s)printf(s) |
229 | 230 | #defineEU1_printf(s,a)printf(s, a) |
230 | | -#defineEU2_printf(s,a)printf(s, a, b) |
231 | | -#defineEU3_printf(s,a)printf(s, a, b, c) |
| 231 | +#defineEU2_printf(s,a,b)printf(s, a, b) |
| 232 | +#defineEU3_printf(s,a,b,c)printf(s, a, b, c) |
232 | 233 | #defineEU4_printf(s,a,b,c,d)printf(s, a, b, c, d) |
233 | 234 | #else |
234 | 235 | #defineEU_nodeDisplay(l) |
|