diff options
author | unknown <magnus@neptunus.(none)> | 2004-04-15 09:17:55 +0200 |
---|---|---|
committer | unknown <magnus@neptunus.(none)> | 2004-04-15 09:17:55 +0200 |
commit | 43dcf48e2f00c7cce50dfe30cc5593afac6a91c8 (patch) | |
tree | abcfea4b77e36d07afa1684e8148044a6b70729e /sql/sql_lex.cc | |
parent | b43af929f871332335b0c1f2c4257aabca6b8a2f (diff) | |
download | mariadb-git-43dcf48e2f00c7cce50dfe30cc5593afac6a91c8.tar.gz |
Formatting changes requested by Monty
sql/gen_lex_hash.cc:
Minor changes
- fix space between for and (
sql/item_subselect.cc:
Minor changes
- fix space between for and (
sql/sql_lex.cc:
Minor changes
- fix space between for and (
sql/sql_string.cc:
Minor changes
- fix space between for and (
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index e0e8fed29c8..d16e1f87085 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -1529,7 +1529,7 @@ bool st_select_lex::setup_ref_array(THD *thd, uint order_group_num) */ bool st_select_lex_unit::check_updateable(char *db, char *table) { - for(SELECT_LEX *sl= first_select(); sl; sl= sl->next_select()) + for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select()) if (sl->check_updateable(db, table)) return 1; return 0; |