From d42b1afc4fd04f2c0c5cff0c56dd371fefe81018 Mon Sep 17 00:00:00 2001 From: Lionel Elie Mamane Date: Wed, 10 Apr 2013 17:16:58 +0200 Subject: janitorial: indentation Change-Id: Icf3b500b9317cd45b3dc424da155ab6c48227ea5 --- connectivity/source/parse/sqlbison.y | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y index 14a89d5c64a0..f823595d2925 100644 --- a/connectivity/source/parse/sqlbison.y +++ b/connectivity/source/parse/sqlbison.y @@ -982,19 +982,19 @@ table_exp: from_clause: SQL_TOKEN_FROM table_ref_commalist - {$$ = SQL_NEW_RULE; - $$->append($1); - $$->append($2);} + { $$ = SQL_NEW_RULE; + $$->append($1); + $$->append($2); } ; table_ref_commalist: table_ref - {$$ = SQL_NEW_COMMALISTRULE; - $$->append($1);} + { $$ = SQL_NEW_COMMALISTRULE; + $$->append($1); } | table_ref_commalist ',' table_ref - {$1->append($3); - $$ = $1;} + { $1->append($3); + $$ = $1; } ; opt_as: @@ -1008,10 +1008,11 @@ opt_row: table_primary_as_range_column: {$$ = SQL_NEW_RULE;} | opt_as SQL_TOKEN_NAME op_column_commalist - {$$ = SQL_NEW_RULE; + { + $$ = SQL_NEW_RULE; $$->append($1); $$->append($2); - $$->append($3); + $$->append($3); } ; table_ref: @@ -1026,7 +1027,7 @@ table_ref: $$ = SQL_NEW_RULE; $$->append($1); $$->append($2); - $$->append($3); + $$->append($3); } | joined_table | '{' SQL_TOKEN_OJ joined_table '}' -- cgit