Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
f8257734
Commit
f8257734
authored
21 years ago
by
Michael Meskes
Browse files
Options
Downloads
Patches
Plain Diff
Added missing rule for DOUBLE variables.
parent
4553e1d8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/ecpg/preproc/preproc.y
+5
-15
5 additions, 15 deletions
src/interfaces/ecpg/preproc/preproc.y
with
5 additions
and
15 deletions
src/interfaces/ecpg/preproc/preproc.y
+
5
−
15
View file @
f8257734
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.27
4
2004/02/1
6
0
7
:4
1:54
meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.27
5
2004/02/1
8
0
8
:4
2:02
meskes Exp $ */
/* Copyright comment */
/* Copyright comment */
%{
%{
...
@@ -551,7 +551,7 @@ add_additional_variables(char *name, bool insert)
...
@@ -551,7 +551,7 @@ add_additional_variables(char *name, bool insert)
%type <dtype_enum> descriptor_item desc_header_item
%type <dtype_enum> descriptor_item desc_header_item
%type <type> var_type
single_vt_type
%type <type> var_type
%type <action> action
%type <action> action
...
@@ -4416,7 +4416,7 @@ single_vt_declaration: type_declaration { $$ = $1; }
...
@@ -4416,7 +4416,7 @@ single_vt_declaration: type_declaration { $$ = $1; }
;
;
single_var_declaration: storage_declaration
single_var_declaration: storage_declaration
single_vt
_type
var
_type
{
{
actual_type[struct_level].type_enum = $2.type_enum;
actual_type[struct_level].type_enum = $2.type_enum;
actual_type[struct_level].type_dimension = $2.type_dimension;
actual_type[struct_level].type_dimension = $2.type_dimension;
...
@@ -4427,7 +4427,7 @@ single_var_declaration: storage_declaration
...
@@ -4427,7 +4427,7 @@ single_var_declaration: storage_declaration
{
{
$$ = cat_str(5, actual_startline[struct_level], $1, $2.type_str, $4, make_str(";\n"));
$$ = cat_str(5, actual_startline[struct_level], $1, $2.type_str, $4, make_str(";\n"));
}
}
|
single_vt
_type
|
var
_type
{
{
actual_type[struct_level].type_enum = $1.type_enum;
actual_type[struct_level].type_enum = $1.type_enum;
actual_type[struct_level].type_dimension = $1.type_dimension;
actual_type[struct_level].type_dimension = $1.type_dimension;
...
@@ -4460,17 +4460,6 @@ ecpg_interval: opt_interval { $$ = $1; }
...
@@ -4460,17 +4460,6 @@ ecpg_interval: opt_interval { $$ = $1; }
| MONTH_P TO MONTH_P { $$ = make_str("month to month"); }
| MONTH_P TO MONTH_P { $$ = make_str("month to month"); }
;
;
single_vt_type: var_type
| DOUBLE_P
{
$$.type_enum = ECPGt_double;
$$.type_str = make_str("double");
$$.type_dimension = make_str("-1");
$$.type_index = make_str("-1");
$$.type_sizeof = NULL;
}
;
/*
/*
* variable declaration inside exec sql declare block
* variable declaration inside exec sql declare block
*/
*/
...
@@ -4960,6 +4949,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
...
@@ -4960,6 +4949,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
}
}
| SQL_BOOL { $$ = ECPGt_bool; }
| SQL_BOOL { $$ = ECPGt_bool; }
| CHAR_P { $$ = ECPGt_char; }
| CHAR_P { $$ = ECPGt_char; }
| DOUBLE_P { $$ = ECPGt_double; }
;
;
opt_signed: SQL_SIGNED
opt_signed: SQL_SIGNED
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment