diff options
author | monty@mishka.local <> | 2004-10-14 18:03:46 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2004-10-14 18:03:46 +0300 |
commit | 719c88e38fd772efd3f13096380d57f282dfd649 (patch) | |
tree | d6c50a4680a01729ce573d4c4f548366a8d2b530 /sql/sql_prepare.cc | |
parent | 0543320240560d278114fe951e0c5caca0ef8c40 (diff) | |
download | mariadb-git-719c88e38fd772efd3f13096380d57f282dfd649.tar.gz |
true,false -> TRUE, FALSE
Simple fixes/optimization of things discovered during review of new pushed code
Diffstat (limited to 'sql/sql_prepare.cc')
-rw-r--r-- | sql/sql_prepare.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_prepare.cc b/sql/sql_prepare.cc index a638e74dc2f..c20fa621b7e 100644 --- a/sql/sql_prepare.cc +++ b/sql/sql_prepare.cc @@ -1780,7 +1780,7 @@ void mysql_stmt_execute(THD *thd, char *packet, uint packet_length) #endif DBUG_ASSERT(thd->free_list == NULL); thd->protocol= &thd->protocol_prep; // Switch to binary protocol - execute_stmt(thd, stmt, &expanded_query, true); + execute_stmt(thd, stmt, &expanded_query, TRUE); thd->protocol= &thd->protocol_simple; // Use normal protocol DBUG_VOID_RETURN; @@ -1832,7 +1832,7 @@ void mysql_sql_stmt_execute(THD *thd, LEX_STRING *stmt_name) my_error(ER_WRONG_ARGUMENTS, MYF(0), "EXECUTE"); send_error(thd); } - execute_stmt(thd, stmt, &expanded_query, false); + execute_stmt(thd, stmt, &expanded_query, FALSE); DBUG_VOID_RETURN; } |