Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb2a2be4

Browse files
author
Michael Meskes
committed
*** empty log message ***
1 parent8624ff7 commitb2a2be4

File tree

3 files changed

+12
-21
lines changed

3 files changed

+12
-21
lines changed

‎src/interfaces/ecpg/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,3 +617,8 @@ Mon Jul 19 07:53:20 CEST 1999
617617
- Fixed quoting bug in ecpglib.c
618618
- Set ecpg version to 2.6.1
619619
- Set library version to 3.0.1
620+
621+
Sun Aug 1 13:31:19 CEST 1999
622+
623+
- Synced preproc.y with gram.y.
624+
- Set ecpg version to 2.6.2

‎src/interfaces/ecpg/preproc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
33

44
MAJOR_VERSION=2
55
MINOR_VERSION=6
6-
PATCHLEVEL=1
6+
PATCHLEVEL=2
77

88
CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION)\
99
-DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL)\

‎src/interfaces/ecpg/preproc/preproc.y

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -777,10 +777,10 @@ adjust_array(enum ECPGttype type_enum, int *dimension, int *length, int type_dim
777777
%type<str>update_target_elopt_idrelation_namedatabase_name
778778
%type<str>access_methodattr_nameclassindex_namenamefunc_name
779779
%type<str>file_nameAexprConstParamNoTypeId
780-
%type<str>in_expr_nodesnot_in_expr_nodesa_exprb_expr
780+
%type<str>in_expr_nodesa_exprb_expr
781781
%type<str>opt_indirectionexpr_listextract_listextract_arg
782782
%type<str>position_listsubstr_listsubstr_from
783-
%type<str>trim_listin_exprsubstr_fornot_in_exprattrattrs
783+
%type<str>trim_listin_exprsubstr_forattrattrs
784784
%type<str>TypenameSimpleTypenameGenericNumericgenericopt_floatopt_numeric
785785
%type<str>opt_decimalCharactercharacteropt_varyingopt_charset
786786
%type<str>opt_collateDatetimedatetimeopt_timezoneopt_interval
@@ -3687,7 +3687,7 @@ a_expr: attr
36873687
{
36883688
$$ = make4_str($1, make1_str(" in ("),$4, make1_str(")"));
36893689
}
3690-
|a_exprNOTIN'('not_in_expr')'
3690+
|a_exprNOTIN'('in_expr')'
36913691
{
36923692
$$ = make4_str($1, make1_str(" not in ("),$5, make1_str(")"));
36933693
}
@@ -4020,23 +4020,9 @@ in_expr: SubSelect
40204020
{$$ =$1; }
40214021
;
40224022

4023-
in_expr_nodes:AexprConst
4023+
in_expr_nodes:a_expr
40244024
{$$ =$1; }
4025-
|in_expr_nodes','AexprConst
4026-
{$$ = cat3_str($1, make1_str(","),$3);}
4027-
;
4028-
4029-
not_in_expr:SubSelect
4030-
{
4031-
$$ =$1;
4032-
}
4033-
|not_in_expr_nodes
4034-
{$$ =$1; }
4035-
;
4036-
4037-
not_in_expr_nodes:AexprConst
4038-
{$$ =$1; }
4039-
|not_in_expr_nodes','AexprConst
4025+
|in_expr_nodes','a_expr
40404026
{$$ = cat3_str($1, make1_str(","),$3);}
40414027
;
40424028

@@ -5647,7 +5633,7 @@ ecpg_expr: attr
56475633
{
56485634
$$ = make4_str($1, make1_str(" in ("),$4, make1_str(")"));
56495635
}
5650-
|a_exprNOTIN'('not_in_expr')'
5636+
|a_exprNOTIN'('in_expr')'
56515637
{
56525638
$$ = make4_str($1, make1_str(" not in ("),$5, make1_str(")"));
56535639
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp