diff options
author | unknown <monty@mysql.com> | 2004-09-04 15:02:57 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-09-04 15:02:57 +0300 |
commit | fa3bfbe45796edd85cce30e62ff1fcfb81df745c (patch) | |
tree | e185704c2cd4b78d0e2814915c4d613ae055d87d /sql/sql_parse.cc | |
parent | 99be6d3060b894b276c16fb9994dbf486c2d69be (diff) | |
download | mariadb-git-fa3bfbe45796edd85cce30e62ff1fcfb81df745c.tar.gz |
Print value of Item_param if it has a value (when debugging)
libmysql/libmysql.c:
More debug
sql/item.h:
Print value of param if it has a value (when debugging)
sql/log.cc:
Better variable name
sql/sql_insert.cc:
Fix bug casused by merge
sql/sql_parse.cc:
Added missing command names (caused crash when running with --debug)
sql/sql_select.cc:
More debugging
sql/sql_yacc.yy:
Fixed typo
tests/client_test.c:
More debugging
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 36a240fa74e..98f1810adc3 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -78,6 +78,7 @@ const char *command_name[]={ "Connect","Kill","Debug","Ping","Time","Delayed_insert","Change user", "Binlog Dump","Table Dump", "Connect Out", "Register Slave", "Prepare", "Prepare Execute", "Long Data", "Close stmt", + "Reset stmt", "Set option", "Fetch", "Error" // Last command number }; |