diff options
author | bell@sanja.is.com.ua <> | 2004-10-07 01:45:06 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-10-07 01:45:06 +0300 |
commit | 3ef0b19cd374970fb2a3e6e963b779186a1a6fae (patch) | |
tree | 1962b7cafa7e8bfcfcdc7410d38cf3144d2a6604 /sql/sql_yacc.yy | |
parent | a9b759af3ea6d8e03ae64b97f9cca8d3e9dfc4e4 (diff) | |
download | mariadb-git-3ef0b19cd374970fb2a3e6e963b779186a1a6fae.tar.gz |
fixed & added comments (according to Igor's review and a bit more)
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 6e4893accb4..7b71f8ccca2 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -2423,8 +2423,8 @@ create_select: else if (lex->sql_command == SQLCOM_REPLACE) lex->sql_command= SQLCOM_REPLACE_SELECT; /* - following work only with local list, global list is - created correctly in this case + The following work only with the local list, the global list + is created correctly in this case */ lex->current_select->table_list.save_and_clear(&lex->save_list); mysql_init_select(lex); @@ -2437,8 +2437,8 @@ create_select: opt_select_from { /* - following work only with local list, global list is - created correctly in this case + The following work only with the local list, the global list + is created correctly in this case */ Lex->current_select->table_list.push_front(&Lex->save_list); } |