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

Commitfae180f

Browse files
author
Michael Meskes
committed
Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs in preproc.y.
1 parent9cbcbf0 commitfae180f

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

‎src/interfaces/ecpg/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,5 +999,10 @@ Son Oct 29 11:26:06 CET 2000
999999
Mon Oct 30 15:27:12 CET 2000
10001000

10011001
- Synced gram.y and preproc.y.
1002+
1003+
Tue Oct 31 16:09:55 CET 2000
1004+
1005+
- Added patch by Christof Petig <christof.petig@wtal.de> fixing some
1006+
parser bugs.
10021007
- Set ecpg version to 2.8.0.
10031008
- Set library version to 3.2.0.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2758,19 +2758,19 @@ table_ref: relation_expr
27582758
}
27592759
|relation_expralias_clause
27602760
{
2761-
cat2_str($1, $2);
2761+
$$=cat2_str($1,$2);
27622762
}
27632763
|'('select_subclause')'alias_clause
27642764
{
2765-
cat_str(4, make_str("("), $2, make_str(")"), $4);
2765+
$$=cat_str(4, make_str("("),$2, make_str(")"),$4);
27662766
}
27672767
|joined_table
27682768
{
27692769
$$ =$1;
27702770
}
27712771
|'('joined_table')'alias_clause
27722772
{
2773-
cat_str(4, make_str("("), $2, make_str(")"), $4);
2773+
$$=cat_str(4, make_str("("),$2, make_str(")"),$4);
27742774
}
27752775
;
27762776

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp