- Synced parser and keyword table.
- ecpg now accepts array elements as input variables.
+
+Tue May 27 13:29:28 CEST 2003
+
+ - Fixed incorrect output for some structs.
- Set ecpg version to 2.12.0.
- Set ecpg library to 3.4.2.
- Set pgtypes library to 1.0.0
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.222 2003/05/23 15:19:34 meskes Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.223 2003/05/27 11:31:52 meskes Exp $ */
/* Copyright comment */
%{
}
| update_target_el
{ $$ = $1; }
- | '*'
- { $$ = make_str("*"); }
;
inf_col_list: ColId opt_indirection
}
;
-s_struct_union: SQL_STRUCT { $$ = make_str("struct"); }
+s_struct_union: SQL_STRUCT
+ {
+ ECPGstruct_sizeof = make_str(""); /* This must not be NULL to distinguish from simple types. */
+ $$ = make_str("struct");
+ }
| UNION { $$ = make_str("union"); }
;