Skip to content

Commit

Permalink
MDEV-8240 : Unknown option 'table_type' when using Connect Engine on MGC
Browse files Browse the repository at this point in the history
Fix for 'reorder' compiler warning.
  • Loading branch information
Nirbhay Choubey committed Jul 31, 2015
1 parent 0abde01 commit 82cecb1
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions sql/sql_class.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1068,23 +1068,24 @@ THD::THD()
derived_tables_processing(FALSE),
waiting_on_group_commit(FALSE), has_waiter(FALSE),
spcont(NULL),
m_parser_state(NULL),
#if defined(ENABLED_DEBUG_SYNC)
debug_sync_control(0),
#endif /* defined(ENABLED_DEBUG_SYNC) */
wait_for_commit_ptr(0),
main_da(0, false, false),
m_stmt_da(&main_da)
#ifdef WITH_WSREP
,
wsrep_applier(is_applier),
wsrep_applier_closing(FALSE),
wsrep_client_thread(0),
wsrep_po_handle(WSREP_PO_INITIALIZER),
wsrep_po_cnt(0),
wsrep_po_in_trans(FALSE),
wsrep_apply_format(0),
wsrep_apply_toi(false),
wsrep_apply_toi(false)
#endif
m_parser_state(NULL),
#if defined(ENABLED_DEBUG_SYNC)
debug_sync_control(0),
#endif /* defined(ENABLED_DEBUG_SYNC) */
wait_for_commit_ptr(0),
main_da(0, false, false),
m_stmt_da(&main_da)
{
ulong tmp;

Expand Down

0 comments on commit 82cecb1

Please sign in to comment.