Skip to content

Commit fae180f

Browse files
author
Michael Meskes
committed
Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs in preproc.y.
1 parent 9cbcbf0 commit fae180f

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_expr alias_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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy