diff options
author | unknown <monty@mysql.com> | 2003-12-17 18:12:59 +0100 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-12-17 18:12:59 +0100 |
commit | 9f03e48321e1be3e1227d582bdfaecd7dbe872e9 (patch) | |
tree | d699b9470766fcc9ef50b02499eea16a9bfcc34d /sql/sql_parse.cc | |
parent | 4bdfe0fb0107f2fb3e9cfb1c8a417e1028c67dcc (diff) | |
download | mariadb-git-9f03e48321e1be3e1227d582bdfaecd7dbe872e9.tar.gz |
Fixed typo. Affected INSERT DELAYED ... SELECT commands
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 50e515d7179..5c08127bfdc 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -1990,7 +1990,7 @@ mysql_execute_command(void) } /* Fix lock for first table */ if (tables->lock_type == TL_WRITE_DELAYED) - tables->lock_type == TL_WRITE; + tables->lock_type= TL_WRITE; /* Don't unlock tables until command is written to binary log */ select_lex->options|= SELECT_NO_UNLOCK; |