You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-16 04:01:52 +03:00
This patch enables select handler for executing prepared statements. Most importantly, we are now activating a persistent arena which will allocate any new items in a permanent MEMROOT for prepared statements and stored procedures. Refer to JOIN::optimize_inner() for details. In processWhere(), we now use SELECT_LEX::prep_where in case we are executing a prepared statement, as this is where the saved WHERE clause is stored for prepared statement processing. In addition, we also disable derived handler for prepared statements.
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/* Copyright (C) 2019 MariaDB Corporation
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
#ifndef HA_MCS_REWRITES
|
|
#define HA_MCS_REWRITES
|
|
|
|
#include "idb_mysql.h"
|
|
|
|
bool in_subselect_rewrite(SELECT_LEX *select_lex);
|
|
void opt_flag_unset_PS(SELECT_LEX *select_lex);
|
|
COND *simplify_joins_mcs(JOIN *join, List<TABLE_LIST> *join_list,
|
|
COND *conds, bool top, bool in_sj);
|
|
uint build_bitmap_for_nested_joins_mcs(List<TABLE_LIST> *join_list,
|
|
uint first_unused);
|
|
|
|
#endif
|