Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
67784456
Commit
67784456
authored
May 27, 2003
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed incorrect output for some structs.
parent
5493ecc3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+6
-4
No files found.
src/interfaces/ecpg/ChangeLog
View file @
67784456
...
@@ -1441,6 +1441,10 @@ Fri May 23 11:46:15 CEST 2003
...
@@ -1441,6 +1441,10 @@ Fri May 23 11:46:15 CEST 2003
- Synced parser and keyword table.
- Synced parser and keyword table.
- ecpg now accepts array elements as input variables.
- 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 version to 2.12.0.
- Set ecpg library to 3.4.2.
- Set ecpg library to 3.4.2.
- Set pgtypes library to 1.0.0
- Set pgtypes library to 1.0.0
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
67784456
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.22
2 2003/05/23 15:19:34
meskes Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.22
3 2003/05/27 11:31:52
meskes Exp $ */
/* Copyright comment */
/* Copyright comment */
%{
%{
...
@@ -3783,8 +3783,6 @@ update_target_list: update_target_list ',' update_target_el
...
@@ -3783,8 +3783,6 @@ update_target_list: update_target_list ',' update_target_el
}
}
| update_target_el
| update_target_el
{ $$ = $1; }
{ $$ = $1; }
| '*'
{ $$ = make_str("*"); }
;
;
inf_col_list: ColId opt_indirection
inf_col_list: ColId opt_indirection
...
@@ -4833,7 +4831,11 @@ s_struct_union_symbol: SQL_STRUCT symbol
...
@@ -4833,7 +4831,11 @@ s_struct_union_symbol: SQL_STRUCT symbol
}
}
;
;
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"); }
| UNION { $$ = make_str("union"); }
;
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment