summaryrefslogtreecommitdiff
path: root/sql/sql_parse.h
diff options
context:
space:
mode:
authorRucha Deodhar <ruchad1998@gmail.com>2019-06-02 00:51:46 +0530
committerSergei Golubchik <serg@mariadb.org>2019-10-14 10:29:31 +0200
commit837ad9ab9760db83b2d117a6183519f18448b782 (patch)
tree7ac0bcfa60d67d2d7f8b18b513762e30572dbba0 /sql/sql_parse.h
parent57a09a72a31331c2bcbf57369fc396f0a96cfb09 (diff)
downloadmariadb-git-837ad9ab9760db83b2d117a6183519f18448b782.tar.gz
MDEV-10014 Add RETURNING to INSERT
Closes #1384
Diffstat (limited to 'sql/sql_parse.h')
-rw-r--r--sql/sql_parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_parse.h b/sql/sql_parse.h
index 1d25b898ca4..a90628781cc 100644
--- a/sql/sql_parse.h
+++ b/sql/sql_parse.h
@@ -41,7 +41,7 @@ bool multi_update_precheck(THD *thd, TABLE_LIST *tables);
bool multi_delete_precheck(THD *thd, TABLE_LIST *tables);
int mysql_multi_update_prepare(THD *thd);
int mysql_multi_delete_prepare(THD *thd);
-bool mysql_insert_select_prepare(THD *thd);
+bool mysql_insert_select_prepare(THD *thd,select_result *sel_res);
bool update_precheck(THD *thd, TABLE_LIST *tables);
bool delete_precheck(THD *thd, TABLE_LIST *tables);
bool insert_precheck(THD *thd, TABLE_LIST *tables);