diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-20 15:12:56 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-20 15:12:56 +0000 |
commit | c33a6343cdfa33ba4428f0e0791d9beb5336a187 (patch) | |
tree | 585476383c4fae9e6536771052ec791b6faa1a9f /src/include/executor | |
parent | a58930bbd52c66f0de2194b40aef1a99ac9c95e2 (diff) | |
download | postgresql-c33a6343cdfa33ba4428f0e0791d9beb5336a187.tar.gz postgresql-c33a6343cdfa33ba4428f0e0791d9beb5336a187.zip |
Code review for SHOW output changes; fix horology expected files for
new SHOW output format.
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/executor.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 5b121546d96..9eb7367f2e3 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.71 2002/07/20 05:49:28 momjian Exp $ + * $Id: executor.h,v 1.72 2002/07/20 15:12:55 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -132,11 +132,11 @@ extern void do_tup_output(TupOutputState *tstate, char **values); extern void do_text_output_multiline(TupOutputState *tstate, char *text); extern void end_tup_output(TupOutputState *tstate); -#define PROJECT_LINE_OF_TEXT(text_to_project) \ +#define PROJECT_LINE_OF_TEXT(tstate, text_to_project) \ do { \ - char *values[1]; \ - values[0] = text_to_project; \ - do_tup_output(tstate, values); \ + char *values_[1]; \ + values_[0] = (text_to_project); \ + do_tup_output(tstate, values_); \ } while (0) |