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

Commit1af623c

Browse files
committed
Remove stray semicolons in old ecpg preproc grammar ... modern bison
versions won't compile it at all with those there. Probably of onlyacademic interest now, but ...
1 parent199fb54 commit1af623c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3695,7 +3695,7 @@ index_name:ColId{ $$ = $1; };
36953695
* Include date/time keywords as SQL92 extension.
36963696
* Include TYPE as a SQL92 unreserved keyword. - thomas 1997-10-05
36973697
*/
3698-
func_name:ColId{$$ =$1; };
3698+
func_name:ColId{$$ =$1; }
36993699
|BETWEEN {$$ = make_str("between");}
37003700
|ILIKE{$$ = make_str("ilike");}
37013701
|IN{$$ = make_str("in");}
@@ -4292,7 +4292,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
42924292
$$ = ECPGt_long;
42934293
#endif
42944294
}
4295-
|SQL_BOOL {$$ = ECPGt_bool; };
4295+
|SQL_BOOL {$$ = ECPGt_bool; }
42964296
|FLOAT {$$ = ECPGt_float; }
42974297
|DOUBLE {$$ = ECPGt_double; }
42984298
|CHAR {$$ = ECPGt_char; }

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp