diff options
author | Michael Meskes <meskes@postgresql.org> | 2000-02-22 19:57:12 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2000-02-22 19:57:12 +0000 |
commit | 991b9740acc80bb00778fe2fb2199c5e6130046e (patch) | |
tree | 08774826d9869a5558f7b147e46580b9cc53b4fb /src/interfaces/ecpg/preproc/variable.c | |
parent | 62f064592f2adab546848b5f3328ac12f17b8bbd (diff) | |
download | postgresql-991b9740acc80bb00778fe2fb2199c5e6130046e.tar.gz postgresql-991b9740acc80bb00778fe2fb2199c5e6130046e.zip |
*** empty log message ***
Diffstat (limited to 'src/interfaces/ecpg/preproc/variable.c')
-rw-r--r-- | src/interfaces/ecpg/preproc/variable.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/variable.c b/src/interfaces/ecpg/preproc/variable.c index df458dcc070..8cbb1d38777 100644 --- a/src/interfaces/ecpg/preproc/variable.c +++ b/src/interfaces/ecpg/preproc/variable.c @@ -222,8 +222,9 @@ dump_variables(struct arguments * list, int mode) /* Then the current element and its indicator */ ECPGdump_a_type(yyout, list->variable->name, list->variable->type, - (list->indicator->type->typ != ECPGt_NO_INDICATOR) ? list->indicator->name : NULL, - (list->indicator->type->typ != ECPGt_NO_INDICATOR) ? list->indicator->type : NULL, NULL, NULL); +/* (list->indicator->type->typ != ECPGt_NO_INDICATOR) ? list->indicator->name : NULL, + (list->indicator->type->typ != ECPGt_NO_INDICATOR) ? list->indicator->type : NULL, NULL, NULL);*/ + list->indicator->name, list->indicator->type, NULL, NULL); /* Then release the list element. */ if (mode != 0) |