aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/preproc/preproc.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/ecpg/preproc/preproc.y')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 84984acf943..a37889553d7 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -3241,16 +3241,16 @@ Typename: Array opt_array_bounds
{
$$ = cat2_str($1, $2.str);
}
- | Character { $$ = $1; }
| SETOF Array
{
$$ = cat2_str(make1_str("setof"), $2);
}
;
-Array: Generic
+Array: Generic { $$ = $1; }
| Datetime { $$ = $1; }
| Numeric { $$ = $1; }
+ | Character { $$ = $1; }
;
Generic: generic