summaryrefslogtreecommitdiff
path: root/sql/sql_select.cc
diff options
context:
space:
mode:
authorSachin Setiya <sachinsetia1001@gmail.com>2018-01-06 23:51:37 +0530
committerSachin Setiya <sachinsetia1001@gmail.com>2018-01-07 00:33:17 +0530
commit73cf630ffc2e971fac68addc60c6fbf805665127 (patch)
tree868a4da3e8996874604d0d75c794c1e4fd8b052a /sql/sql_select.cc
parent59990747bcc88059d21f1f140ba5ec80f60f38f4 (diff)
downloadmariadb-git-73cf630ffc2e971fac68addc60c6fbf805665127.tar.gz
Fix Compile Error while using Flag '-DUSE_ARIA_FOR_TMP_TABLES:BOOL=OFF'
Diffstat (limited to 'sql/sql_select.cc')
-rw-r--r--sql/sql_select.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_select.cc b/sql/sql_select.cc
index 5d6945e866b..e80c02b52b4 100644
--- a/sql/sql_select.cc
+++ b/sql/sql_select.cc
@@ -17799,7 +17799,7 @@ bool create_internal_tmp_table(TABLE *table, KEY *keyinfo,
table->in_use->inc_status_created_tmp_tables();
table->in_use->query_plan_flags|= QPLAN_TMP_DISK;
share->db_record_offset= 1;
- table->created= TRUE;
+ table->set_created();
DBUG_RETURN(0);
err:
DBUG_RETURN(1);
@@ -18299,8 +18299,8 @@ int rr_sequential_and_unpack(READ_RECORD *info)
*/
bool instantiate_tmp_table(TABLE *table, KEY *keyinfo,
- MARIA_COLUMNDEF *start_recinfo,
- MARIA_COLUMNDEF **recinfo,
+ TMP_ENGINE_COLUMNDEF *start_recinfo,
+ TMP_ENGINE_COLUMNDEF **recinfo,
ulonglong options)
{
if (table->s->db_type() == TMP_ENGINE_HTON)