summaryrefslogtreecommitdiff
path: root/sql/sql_prepare.h
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2017-04-07 15:38:01 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2017-06-14 12:02:54 +0200
commit91ae1258ee29405c0e7c6c196aef2e870c11ec01 (patch)
treee179fd618362f45b98a084cb3a5e8076f8f703c3 /sql/sql_prepare.h
parente813fe862226554cfe31754b3dfeafbb2b9a7159 (diff)
downloadmariadb-git-91ae1258ee29405c0e7c6c196aef2e870c11ec01.tar.gz
MDEV-12471: BULK Command
BULK execution moved to a new command.
Diffstat (limited to 'sql/sql_prepare.h')
-rw-r--r--sql/sql_prepare.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_prepare.h b/sql/sql_prepare.h
index 820cb43e6d5..203b37b3b26 100644
--- a/sql/sql_prepare.h
+++ b/sql/sql_prepare.h
@@ -72,6 +72,7 @@ private:
void mysqld_stmt_prepare(THD *thd, const char *packet, uint packet_length);
void mysqld_stmt_execute(THD *thd, char *packet, uint packet_length);
+void mysqld_stmt_execute_bulk(THD *thd, char *packet, uint packet_length);
void mysqld_stmt_bulk_execute(THD *thd, char *packet, uint packet_length);
void mysqld_stmt_close(THD *thd, char *packet);
void mysql_sql_stmt_prepare(THD *thd);
@@ -83,7 +84,7 @@ void mysqld_stmt_reset(THD *thd, char *packet);
void mysql_stmt_get_longdata(THD *thd, char *pos, ulong packet_length);
void reinit_stmt_before_use(THD *thd, LEX *lex);
-ulong bulk_parameters_iterations(THD *thd);
+my_bool bulk_parameters_iterations(THD *thd);
my_bool bulk_parameters_set(THD *thd);
/**
Execute a fragment of server code in an isolated context, so that