diff options
author | Rucha Deodhar <ruchad1998@gmail.com> | 2019-06-02 00:51:46 +0530 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-10-14 10:29:31 +0200 |
commit | 837ad9ab9760db83b2d117a6183519f18448b782 (patch) | |
tree | 7ac0bcfa60d67d2d7f8b18b513762e30572dbba0 /sql/sql_parse.h | |
parent | 57a09a72a31331c2bcbf57369fc396f0a96cfb09 (diff) | |
download | mariadb-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.h | 2 |
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); |