2002-05-12 22:46:42 +02:00
|
|
|
/* Copyright (C) 2000 MySQL AB
|
|
|
|
|
|
|
|
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; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
2004-07-04 07:46:28 +02:00
|
|
|
/*
|
2002-05-12 22:46:42 +02:00
|
|
|
subselect Item
|
|
|
|
|
|
|
|
SUBSELECT TODO:
|
|
|
|
- add function from mysql_select that use JOIN* as parameter to JOIN methods
|
|
|
|
(sql_select.h/sql_select.cc)
|
|
|
|
*/
|
|
|
|
|
2005-05-26 12:09:14 +02:00
|
|
|
#ifdef USE_PRAGMA_IMPLEMENTATION
|
2002-05-12 22:46:42 +02:00
|
|
|
#pragma implementation // gcc: Class implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "mysql_priv.h"
|
|
|
|
#include "sql_select.h"
|
|
|
|
|
2002-12-28 00:01:05 +01:00
|
|
|
inline Item * and_items(Item* cond, Item *item)
|
|
|
|
{
|
|
|
|
return (cond? (new Item_cond_and(cond, item)) : item);
|
|
|
|
}
|
|
|
|
|
2002-10-08 22:49:59 +02:00
|
|
|
Item_subselect::Item_subselect():
|
2004-02-08 19:14:13 +01:00
|
|
|
Item_result_field(), value_assigned(0), thd(0), substitution(0),
|
|
|
|
engine(0), old_engine(0), used_tables_cache(0), have_to_be_excluded(0),
|
2006-10-31 18:51:09 +01:00
|
|
|
const_item_cache(1), engine_changed(0), changed(0), is_correlated(FALSE)
|
2002-05-12 22:46:42 +02:00
|
|
|
{
|
2006-05-17 22:55:28 +02:00
|
|
|
with_subselect= 1;
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2002-10-08 22:49:59 +02:00
|
|
|
/*
|
2004-07-04 07:46:28 +02:00
|
|
|
item value is NULL if select_subselect not changed this value
|
2002-10-08 22:49:59 +02:00
|
|
|
(i.e. some rows will be found returned)
|
|
|
|
*/
|
|
|
|
null_value= 1;
|
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2003-10-02 21:19:41 +02:00
|
|
|
void Item_subselect::init(st_select_lex *select_lex,
|
2002-11-07 22:45:19 +01:00
|
|
|
select_subselect *result)
|
2002-10-08 22:49:59 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
DBUG_ENTER("Item_subselect::init");
|
2006-11-20 21:42:06 +01:00
|
|
|
DBUG_PRINT("enter", ("select_lex: 0x%lx", (long) select_lex));
|
2004-02-08 19:14:13 +01:00
|
|
|
unit= select_lex->master_unit();
|
2002-09-03 08:50:36 +02:00
|
|
|
|
2004-05-07 22:06:11 +02:00
|
|
|
if (unit->item)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Item can be changed in JOIN::prepare while engine in JOIN::optimize
|
|
|
|
=> we do not copy old_engine here
|
|
|
|
*/
|
|
|
|
engine= unit->item->engine;
|
2004-08-13 09:01:30 +02:00
|
|
|
parsing_place= unit->item->parsing_place;
|
2004-05-07 22:06:11 +02:00
|
|
|
unit->item->engine= 0;
|
|
|
|
unit->item= this;
|
2004-10-20 03:04:37 +02:00
|
|
|
engine->change_result(this, result);
|
2004-05-07 22:06:11 +02:00
|
|
|
}
|
2002-09-03 08:50:36 +02:00
|
|
|
else
|
2004-05-07 22:06:11 +02:00
|
|
|
{
|
2004-08-23 21:31:01 +02:00
|
|
|
SELECT_LEX *outer_select= unit->outer_select();
|
|
|
|
/*
|
|
|
|
do not take into account expression inside aggregate functions because
|
|
|
|
they can access original table fields
|
|
|
|
*/
|
|
|
|
parsing_place= (outer_select->in_sum_expr ?
|
|
|
|
NO_MATTER :
|
|
|
|
outer_select->parsing_place);
|
2004-05-07 22:06:11 +02:00
|
|
|
if (select_lex->next_select())
|
|
|
|
engine= new subselect_union_engine(unit, result, this);
|
|
|
|
else
|
|
|
|
engine= new subselect_single_select_engine(select_lex, result, this);
|
|
|
|
}
|
2004-06-09 22:32:20 +02:00
|
|
|
{
|
|
|
|
SELECT_LEX *upper= unit->outer_select();
|
2004-08-13 09:01:30 +02:00
|
|
|
if (upper->parsing_place == IN_HAVING)
|
2004-06-09 22:32:20 +02:00
|
|
|
upper->subquery_in_having= 1;
|
|
|
|
}
|
2002-05-12 22:46:42 +02:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2003-12-30 11:08:19 +01:00
|
|
|
void Item_subselect::cleanup()
|
|
|
|
{
|
2004-02-08 19:14:13 +01:00
|
|
|
DBUG_ENTER("Item_subselect::cleanup");
|
2003-12-30 11:08:19 +01:00
|
|
|
Item_result_field::cleanup();
|
2004-02-08 19:14:13 +01:00
|
|
|
if (old_engine)
|
|
|
|
{
|
2004-05-07 22:06:11 +02:00
|
|
|
if (engine)
|
|
|
|
engine->cleanup();
|
2004-02-08 19:14:13 +01:00
|
|
|
engine= old_engine;
|
|
|
|
old_engine= 0;
|
|
|
|
}
|
2004-05-07 22:06:11 +02:00
|
|
|
if (engine)
|
|
|
|
engine->cleanup();
|
2004-02-08 19:14:13 +01:00
|
|
|
reset();
|
|
|
|
value_assigned= 0;
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Item_singlerow_subselect::cleanup()
|
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_singlerow_subselect::cleanup");
|
|
|
|
value= 0; row= 0;
|
|
|
|
Item_subselect::cleanup();
|
|
|
|
DBUG_VOID_RETURN;
|
2003-12-30 11:08:19 +01:00
|
|
|
}
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2002-09-03 08:50:36 +02:00
|
|
|
Item_subselect::~Item_subselect()
|
|
|
|
{
|
2003-10-27 00:01:27 +01:00
|
|
|
delete engine;
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
Item_subselect::trans_res
|
2004-07-04 07:46:28 +02:00
|
|
|
Item_subselect::select_transformer(JOIN *join)
|
2002-10-27 22:27:00 +01:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_subselect::select_transformer");
|
2003-08-28 12:21:30 +02:00
|
|
|
DBUG_RETURN(RES_OK);
|
2002-10-27 22:27:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-01 06:05:42 +02:00
|
|
|
bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
|
2002-05-12 22:46:42 +02:00
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
char const *save_where= thd_param->where;
|
2005-11-23 21:45:02 +01:00
|
|
|
uint8 uncacheable;
|
2004-10-20 03:04:37 +02:00
|
|
|
bool res;
|
2004-09-06 14:14:10 +02:00
|
|
|
|
2004-03-17 13:26:26 +01:00
|
|
|
DBUG_ASSERT(fixed == 0);
|
2003-10-02 21:19:41 +02:00
|
|
|
engine->set_thd((thd= thd_param));
|
2003-05-28 15:52:56 +02:00
|
|
|
|
2005-05-31 12:06:15 +02:00
|
|
|
if (check_stack_overrun(thd, STACK_MIN_SIZE, (gptr)&res))
|
2004-10-20 03:04:37 +02:00
|
|
|
return TRUE;
|
2004-07-14 22:57:14 +02:00
|
|
|
|
|
|
|
res= engine->prepare();
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
// all transformation is done (used by prepared statements)
|
2004-02-08 19:14:13 +01:00
|
|
|
changed= 1;
|
|
|
|
|
2002-10-08 13:50:12 +02:00
|
|
|
if (!res)
|
2002-10-12 00:09:47 +02:00
|
|
|
{
|
2003-05-14 20:51:33 +02:00
|
|
|
if (substitution)
|
|
|
|
{
|
2004-03-20 12:36:26 +01:00
|
|
|
int ret= 0;
|
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
// did we changed top item of WHERE condition
|
|
|
|
if (unit->outer_select()->where == (*ref))
|
|
|
|
unit->outer_select()->where= substitution; // correct WHERE for PS
|
2004-12-08 22:37:17 +01:00
|
|
|
else if (unit->outer_select()->having == (*ref))
|
|
|
|
unit->outer_select()->having= substitution; // correct HAVING for PS
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
(*ref)= substitution;
|
|
|
|
substitution->name= name;
|
|
|
|
if (have_to_be_excluded)
|
|
|
|
engine->exclude();
|
|
|
|
substitution= 0;
|
2004-07-04 07:46:28 +02:00
|
|
|
thd->where= "checking transformed subquery";
|
2004-03-17 13:26:26 +01:00
|
|
|
if (!(*ref)->fixed)
|
2005-07-01 06:05:42 +02:00
|
|
|
ret= (*ref)->fix_fields(thd, ref);
|
2004-10-27 20:11:06 +02:00
|
|
|
thd->where= save_where;
|
2003-05-14 20:51:33 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2002-10-12 00:09:47 +02:00
|
|
|
// Is it one field subselect?
|
|
|
|
if (engine->cols() > max_columns)
|
2004-07-04 07:46:28 +02:00
|
|
|
{
|
2003-10-06 21:35:05 +02:00
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
|
2004-10-20 03:04:37 +02:00
|
|
|
return TRUE;
|
2002-10-12 00:09:47 +02:00
|
|
|
}
|
2002-10-08 13:50:12 +02:00
|
|
|
fix_length_and_dec();
|
2002-10-12 00:09:47 +02:00
|
|
|
}
|
2005-01-18 15:26:05 +01:00
|
|
|
else
|
2005-11-23 21:45:02 +01:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
if ((uncacheable= engine->uncacheable()))
|
2003-10-23 19:50:53 +02:00
|
|
|
{
|
|
|
|
const_item_cache= 0;
|
2003-11-17 19:53:40 +01:00
|
|
|
if (uncacheable & UNCACHEABLE_RAND)
|
|
|
|
used_tables_cache|= RAND_TABLE_BIT;
|
2003-10-23 19:50:53 +02:00
|
|
|
}
|
2002-11-21 10:01:33 +01:00
|
|
|
fixed= 1;
|
2005-11-23 21:45:02 +01:00
|
|
|
|
|
|
|
err:
|
2002-11-24 20:10:52 +01:00
|
|
|
thd->where= save_where;
|
2002-09-28 17:34:56 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
This changeset is largely a handler cleanup changeset (WL#3281), but includes fixes and cleanups that was found necessary while testing the handler changes
Changes that requires code changes in other code of other storage engines.
(Note that all changes are very straightforward and one should find all issues
by compiling a --debug build and fixing all compiler errors and all
asserts in field.cc while running the test suite),
- New optional handler function introduced: reset()
This is called after every DML statement to make it easy for a handler to
statement specific cleanups.
(The only case it's not called is if force the file to be closed)
- handler::extra(HA_EXTRA_RESET) is removed. Code that was there before
should be moved to handler::reset()
- table->read_set contains a bitmap over all columns that are needed
in the query. read_row() and similar functions only needs to read these
columns
- table->write_set contains a bitmap over all columns that will be updated
in the query. write_row() and update_row() only needs to update these
columns.
The above bitmaps should now be up to date in all context
(including ALTER TABLE, filesort()).
The handler is informed of any changes to the bitmap after
fix_fields() by calling the virtual function
handler::column_bitmaps_signal(). If the handler does caching of
these bitmaps (instead of using table->read_set, table->write_set),
it should redo the caching in this code. as the signal() may be sent
several times, it's probably best to set a variable in the signal
and redo the caching on read_row() / write_row() if the variable was
set.
- Removed the read_set and write_set bitmap objects from the handler class
- Removed all column bit handling functions from the handler class.
(Now one instead uses the normal bitmap functions in my_bitmap.c instead
of handler dedicated bitmap functions)
- field->query_id is removed. One should instead instead check
table->read_set and table->write_set if a field is used in the query.
- handler::extra(HA_EXTRA_RETRIVE_ALL_COLS) and
handler::extra(HA_EXTRA_RETRIEVE_PRIMARY_KEY) are removed. One should now
instead use table->read_set to check for which columns to retrieve.
- If a handler needs to call Field->val() or Field->store() on columns
that are not used in the query, one should install a temporary
all-columns-used map while doing so. For this, we provide the following
functions:
my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->read_set);
field->val();
dbug_tmp_restore_column_map(table->read_set, old_map);
and similar for the write map:
my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->write_set);
field->val();
dbug_tmp_restore_column_map(table->write_set, old_map);
If this is not done, you will sooner or later hit a DBUG_ASSERT
in the field store() / val() functions.
(For not DBUG binaries, the dbug_tmp_restore_column_map() and
dbug_tmp_restore_column_map() are inline dummy functions and should
be optimized away be the compiler).
- If one needs to temporary set the column map for all binaries (and not
just to avoid the DBUG_ASSERT() in the Field::store() / Field::val()
methods) one should use the functions tmp_use_all_columns() and
tmp_restore_column_map() instead of the above dbug_ variants.
- All 'status' fields in the handler base class (like records,
data_file_length etc) are now stored in a 'stats' struct. This makes
it easier to know what status variables are provided by the base
handler. This requires some trivial variable names in the extra()
function.
- New virtual function handler::records(). This is called to optimize
COUNT(*) if (handler::table_flags() & HA_HAS_RECORDS()) is true.
(stats.records is not supposed to be an exact value. It's only has to
be 'reasonable enough' for the optimizer to be able to choose a good
optimization path).
- Non virtual handler::init() function added for caching of virtual
constants from engine.
- Removed has_transactions() virtual method. Now one should instead return
HA_NO_TRANSACTIONS in table_flags() if the table handler DOES NOT support
transactions.
- The 'xxxx_create_handler()' function now has a MEM_ROOT_root argument
that is to be used with 'new handler_name()' to allocate the handler
in the right area. The xxxx_create_handler() function is also
responsible for any initialization of the object before returning.
For example, one should change:
static handler *myisam_create_handler(TABLE_SHARE *table)
{
return new ha_myisam(table);
}
->
static handler *myisam_create_handler(TABLE_SHARE *table, MEM_ROOT *mem_root)
{
return new (mem_root) ha_myisam(table);
}
- New optional virtual function: use_hidden_primary_key().
This is called in case of an update/delete when
(table_flags() and HA_PRIMARY_KEY_REQUIRED_FOR_DELETE) is defined
but we don't have a primary key. This allows the handler to take precisions
in remembering any hidden primary key to able to update/delete any
found row. The default handler marks all columns to be read.
- handler::table_flags() now returns a ulonglong (to allow for more flags).
- New/changed table_flags()
- HA_HAS_RECORDS Set if ::records() is supported
- HA_NO_TRANSACTIONS Set if engine doesn't support transactions
- HA_PRIMARY_KEY_REQUIRED_FOR_DELETE
Set if we should mark all primary key columns for
read when reading rows as part of a DELETE
statement. If there is no primary key,
all columns are marked for read.
- HA_PARTIAL_COLUMN_READ Set if engine will not read all columns in some
cases (based on table->read_set)
- HA_PRIMARY_KEY_ALLOW_RANDOM_ACCESS
Renamed to HA_PRIMARY_KEY_REQUIRED_FOR_POSITION.
- HA_DUPP_POS Renamed to HA_DUPLICATE_POS
- HA_REQUIRES_KEY_COLUMNS_FOR_DELETE
Set this if we should mark ALL key columns for
read when when reading rows as part of a DELETE
statement. In case of an update we will mark
all keys for read for which key part changed
value.
- HA_STATS_RECORDS_IS_EXACT
Set this if stats.records is exact.
(This saves us some extra records() calls
when optimizing COUNT(*))
- Removed table_flags()
- HA_NOT_EXACT_COUNT Now one should instead use HA_HAS_RECORDS if
handler::records() gives an exact count() and
HA_STATS_RECORDS_IS_EXACT if stats.records is exact.
- HA_READ_RND_SAME Removed (no one supported this one)
- Removed not needed functions ha_retrieve_all_cols() and ha_retrieve_all_pk()
- Renamed handler::dupp_pos to handler::dup_pos
- Removed not used variable handler::sortkey
Upper level handler changes:
- ha_reset() now does some overall checks and calls ::reset()
- ha_table_flags() added. This is a cached version of table_flags(). The
cache is updated on engine creation time and updated on open.
MySQL level changes (not obvious from the above):
- DBUG_ASSERT() added to check that column usage matches what is set
in the column usage bit maps. (This found a LOT of bugs in current
column marking code).
- In 5.1 before, all used columns was marked in read_set and only updated
columns was marked in write_set. Now we only mark columns for which we
need a value in read_set.
- Column bitmaps are created in open_binary_frm() and open_table_from_share().
(Before this was in table.cc)
- handler::table_flags() calls are replaced with handler::ha_table_flags()
- For calling field->val() you must have the corresponding bit set in
table->read_set. For calling field->store() you must have the
corresponding bit set in table->write_set. (There are asserts in
all store()/val() functions to catch wrong usage)
- thd->set_query_id is renamed to thd->mark_used_columns and instead
of setting this to an integer value, this has now the values:
MARK_COLUMNS_NONE, MARK_COLUMNS_READ, MARK_COLUMNS_WRITE
Changed also all variables named 'set_query_id' to mark_used_columns.
- In filesort() we now inform the handler of exactly which columns are needed
doing the sort and choosing the rows.
- The TABLE_SHARE object has a 'all_set' column bitmap one can use
when one needs a column bitmap with all columns set.
(This is used for table->use_all_columns() and other places)
- The TABLE object has 3 column bitmaps:
- def_read_set Default bitmap for columns to be read
- def_write_set Default bitmap for columns to be written
- tmp_set Can be used as a temporary bitmap when needed.
The table object has also two pointer to bitmaps read_set and write_set
that the handler should use to find out which columns are used in which way.
- count() optimization now calls handler::records() instead of using
handler->stats.records (if (table_flags() & HA_HAS_RECORDS) is true).
- Added extra argument to Item::walk() to indicate if we should also
traverse sub queries.
- Added TABLE parameter to cp_buffer_from_ref()
- Don't close tables created with CREATE ... SELECT but keep them in
the table cache. (Faster usage of newly created tables).
New interfaces:
- table->clear_column_bitmaps() to initialize the bitmaps for tables
at start of new statements.
- table->column_bitmaps_set() to set up new column bitmaps and signal
the handler about this.
- table->column_bitmaps_set_no_signal() for some few cases where we need
to setup new column bitmaps but don't signal the handler (as the handler
has already been signaled about these before). Used for the momement
only in opt_range.cc when doing ROR scans.
- table->use_all_columns() to install a bitmap where all columns are marked
as use in the read and the write set.
- table->default_column_bitmaps() to install the normal read and write
column bitmaps, but not signaling the handler about this.
This is mainly used when creating TABLE instances.
- table->mark_columns_needed_for_delete(),
table->mark_columns_needed_for_delete() and
table->mark_columns_needed_for_insert() to allow us to put additional
columns in column usage maps if handler so requires.
(The handler indicates what it neads in handler->table_flags())
- table->prepare_for_position() to allow us to tell handler that it
needs to read primary key parts to be able to store them in
future table->position() calls.
(This replaces the table->file->ha_retrieve_all_pk function)
- table->mark_auto_increment_column() to tell handler are going to update
columns part of any auto_increment key.
- table->mark_columns_used_by_index() to mark all columns that is part of
an index. It will also send extra(HA_EXTRA_KEYREAD) to handler to allow
it to quickly know that it only needs to read colums that are part
of the key. (The handler can also use the column map for detecting this,
but simpler/faster handler can just monitor the extra() call).
- table->mark_columns_used_by_index_no_reset() to in addition to other columns,
also mark all columns that is used by the given key.
- table->restore_column_maps_after_mark_index() to restore to default
column maps after a call to table->mark_columns_used_by_index().
- New item function register_field_in_read_map(), for marking used columns
in table->read_map. Used by filesort() to mark all used columns
- Maintain in TABLE->merge_keys set of all keys that are used in query.
(Simplices some optimization loops)
- Maintain Field->part_of_key_not_clustered which is like Field->part_of_key
but the field in the clustered key is not assumed to be part of all index.
(used in opt_range.cc for faster loops)
- dbug_tmp_use_all_columns(), dbug_tmp_restore_column_map()
tmp_use_all_columns() and tmp_restore_column_map() functions to temporally
mark all columns as usable. The 'dbug_' version is primarily intended
inside a handler when it wants to just call Field:store() & Field::val()
functions, but don't need the column maps set for any other usage.
(ie:: bitmap_is_set() is never called)
- We can't use compare_records() to skip updates for handlers that returns
a partial column set and the read_set doesn't cover all columns in the
write set. The reason for this is that if we have a column marked only for
write we can't in the MySQL level know if the value changed or not.
The reason this worked before was that MySQL marked all to be written
columns as also to be read. The new 'optimal' bitmaps exposed this 'hidden
bug'.
- open_table_from_share() does not anymore setup temporary MEM_ROOT
object as a thread specific variable for the handler. Instead we
send the to-be-used MEMROOT to get_new_handler().
(Simpler, faster code)
Bugs fixed:
- Column marking was not done correctly in a lot of cases.
(ALTER TABLE, when using triggers, auto_increment fields etc)
(Could potentially result in wrong values inserted in table handlers
relying on that the old column maps or field->set_query_id was correct)
Especially when it comes to triggers, there may be cases where the
old code would cause lost/wrong values for NDB and/or InnoDB tables.
- Split thd->options flag OPTION_STATUS_NO_TRANS_UPDATE to two flags:
OPTION_STATUS_NO_TRANS_UPDATE and OPTION_KEEP_LOG.
This allowed me to remove some wrong warnings about:
"Some non-transactional changed tables couldn't be rolled back"
- Fixed handling of INSERT .. SELECT and CREATE ... SELECT that wrongly reset
(thd->options & OPTION_STATUS_NO_TRANS_UPDATE) which caused us to loose
some warnings about
"Some non-transactional changed tables couldn't be rolled back")
- Fixed use of uninitialized memory in ha_ndbcluster.cc::delete_table()
which could cause delete_table to report random failures.
- Fixed core dumps for some tests when running with --debug
- Added missing FN_LIBCHAR in mysql_rm_tmp_tables()
(This has probably caused us to not properly remove temporary files after
crash)
- slow_logs was not properly initialized, which could maybe cause
extra/lost entries in slow log.
- If we get an duplicate row on insert, change column map to read and
write all columns while retrying the operation. This is required by
the definition of REPLACE and also ensures that fields that are only
part of UPDATE are properly handled. This fixed a bug in NDB and
REPLACE where REPLACE wrongly copied some column values from the replaced
row.
- For table handler that doesn't support NULL in keys, we would give an error
when creating a primary key with NULL fields, even after the fields has been
automaticly converted to NOT NULL.
- Creating a primary key on a SPATIAL key, would fail if field was not
declared as NOT NULL.
Cleanups:
- Removed not used condition argument to setup_tables
- Removed not needed item function reset_query_id_processor().
- Field->add_index is removed. Now this is instead maintained in
(field->flags & FIELD_IN_ADD_INDEX)
- Field->fieldnr is removed (use field->field_index instead)
- New argument to filesort() to indicate that it should return a set of
row pointers (not used columns). This allowed me to remove some references
to sql_command in filesort and should also enable us to return column
results in some cases where we couldn't before.
- Changed column bitmap handling in opt_range.cc to be aligned with TABLE
bitmap, which allowed me to use bitmap functions instead of looping over
all fields to create some needed bitmaps. (Faster and smaller code)
- Broke up found too long lines
- Moved some variable declaration at start of function for better code
readability.
- Removed some not used arguments from functions.
(setup_fields(), mysql_prepare_insert_check_table())
- setup_fields() now takes an enum instead of an int for marking columns
usage.
- For internal temporary tables, use handler::write_row(),
handler::delete_row() and handler::update_row() instead of
handler::ha_xxxx() for faster execution.
- Changed some constants to enum's and define's.
- Using separate column read and write sets allows for easier checking
of timestamp field was set by statement.
- Remove calls to free_io_cache() as this is now done automaticly in ha_reset()
- Don't build table->normalized_path as this is now identical to table->path
(after bar's fixes to convert filenames)
- Fixed some missed DBUG_PRINT(.."%lx") to use "0x%lx" to make it easier to
do comparision with the 'convert-dbug-for-diff' tool.
Things left to do in 5.1:
- We wrongly log failed CREATE TABLE ... SELECT in some cases when using
row based logging (as shown by testcase binlog_row_mix_innodb_myisam.result)
Mats has promised to look into this.
- Test that my fix for CREATE TABLE ... SELECT is indeed correct.
(I added several test cases for this, but in this case it's better that
someone else also tests this throughly).
Lars has promosed to do this.
2006-06-04 17:52:22 +02:00
|
|
|
|
|
|
|
bool Item_subselect::walk(Item_processor processor, bool walk_subquery,
|
|
|
|
byte *argument)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (walk_subquery)
|
|
|
|
{
|
|
|
|
for (SELECT_LEX *lex= unit->first_select(); lex; lex= lex->next_select())
|
|
|
|
{
|
|
|
|
List_iterator<Item> li(lex->item_list);
|
|
|
|
Item *item;
|
|
|
|
ORDER *order;
|
|
|
|
|
|
|
|
if (lex->where && (lex->where)->walk(processor, walk_subquery, argument))
|
|
|
|
return 1;
|
|
|
|
if (lex->having && (lex->having)->walk(processor, walk_subquery,
|
|
|
|
argument))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
while ((item=li++))
|
|
|
|
{
|
|
|
|
if (item->walk(processor, walk_subquery, argument))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
for (order= (ORDER*) lex->order_list.first ; order; order= order->next)
|
|
|
|
{
|
|
|
|
if ((*order->item)->walk(processor, walk_subquery, argument))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
for (order= (ORDER*) lex->group_list.first ; order; order= order->next)
|
|
|
|
{
|
|
|
|
if ((*order->item)->walk(processor, walk_subquery, argument))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (this->*processor)(argument);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
bool Item_subselect::exec(bool full_scan)
|
2003-05-28 15:52:56 +02:00
|
|
|
{
|
2003-07-07 17:40:19 +02:00
|
|
|
int res;
|
2004-11-08 00:13:54 +01:00
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
res= engine->exec(full_scan);
|
2004-11-08 00:13:54 +01:00
|
|
|
|
2003-07-07 17:40:19 +02:00
|
|
|
if (engine_changed)
|
|
|
|
{
|
|
|
|
engine_changed= 0;
|
2006-10-31 18:51:09 +01:00
|
|
|
return exec(full_scan);
|
2003-07-07 17:40:19 +02:00
|
|
|
}
|
|
|
|
return (res);
|
2003-05-28 15:52:56 +02:00
|
|
|
}
|
|
|
|
|
2004-07-04 07:46:28 +02:00
|
|
|
Item::Type Item_subselect::type() const
|
2002-12-19 06:38:33 +01:00
|
|
|
{
|
|
|
|
return SUBSELECT_ITEM;
|
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2002-09-28 17:34:56 +02:00
|
|
|
void Item_subselect::fix_length_and_dec()
|
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
engine->fix_length_and_dec(0);
|
2002-05-12 22:46:42 +02:00
|
|
|
}
|
2002-06-19 16:52:44 +02:00
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2003-10-16 23:36:01 +02:00
|
|
|
table_map Item_subselect::used_tables() const
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2003-11-17 19:53:40 +01:00
|
|
|
return (table_map) (engine->uncacheable() ? used_tables_cache : 0L);
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2003-10-28 11:45:37 +01:00
|
|
|
|
2003-10-16 23:36:01 +02:00
|
|
|
bool Item_subselect::const_item() const
|
|
|
|
{
|
2003-10-23 19:50:53 +02:00
|
|
|
return const_item_cache;
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
|
|
|
|
2003-12-06 20:37:24 +01:00
|
|
|
Item *Item_subselect::get_tmp_table_item(THD *thd)
|
|
|
|
{
|
|
|
|
if (!with_sum_func && !const_item())
|
2004-03-20 12:36:26 +01:00
|
|
|
return new Item_field(result_field);
|
2003-12-06 20:37:24 +01:00
|
|
|
return copy_or_same(thd);
|
|
|
|
}
|
2003-10-28 11:45:37 +01:00
|
|
|
|
2003-10-16 23:36:01 +02:00
|
|
|
void Item_subselect::update_used_tables()
|
|
|
|
{
|
|
|
|
if (!engine->uncacheable())
|
|
|
|
{
|
2005-02-08 23:50:45 +01:00
|
|
|
// did all used tables become static?
|
2003-11-01 18:02:43 +01:00
|
|
|
if (!(used_tables_cache & ~engine->upper_select_const_tables()))
|
2003-10-16 23:36:01 +02:00
|
|
|
const_item_cache= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
|
|
|
void Item_subselect::print(String *str)
|
|
|
|
{
|
|
|
|
str->append('(');
|
|
|
|
engine->print(str);
|
|
|
|
str->append(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:51:09 +02:00
|
|
|
Item_singlerow_subselect::Item_singlerow_subselect(st_select_lex *select_lex)
|
2003-08-12 11:38:03 +02:00
|
|
|
:Item_subselect(), value(0)
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2002-12-19 20:15:09 +01:00
|
|
|
DBUG_ENTER("Item_singlerow_subselect::Item_singlerow_subselect");
|
2003-10-02 21:19:41 +02:00
|
|
|
init(select_lex, new select_singlerow_subselect(this));
|
2002-06-19 16:52:44 +02:00
|
|
|
maybe_null= 1;
|
2002-12-19 06:38:33 +01:00
|
|
|
max_columns= UINT_MAX;
|
2002-10-27 22:27:00 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2004-09-10 12:09:27 +02:00
|
|
|
Item_maxmin_subselect::Item_maxmin_subselect(THD *thd_param,
|
|
|
|
Item_subselect *parent,
|
2003-10-27 00:01:27 +01:00
|
|
|
st_select_lex *select_lex,
|
2003-10-16 14:54:47 +02:00
|
|
|
bool max_arg)
|
2004-11-18 17:10:07 +01:00
|
|
|
:Item_singlerow_subselect(), was_values(TRUE)
|
2003-08-12 11:38:03 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_maxmin_subselect::Item_maxmin_subselect");
|
2003-10-16 14:54:47 +02:00
|
|
|
max= max_arg;
|
|
|
|
init(select_lex, new select_max_min_finder_subselect(this, max_arg));
|
2003-08-12 11:38:03 +02:00
|
|
|
max_columns= 1;
|
|
|
|
maybe_null= 1;
|
|
|
|
max_columns= 1;
|
2003-10-27 00:01:27 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Following information was collected during performing fix_fields()
|
|
|
|
of Items belonged to subquery, which will be not repeated
|
|
|
|
*/
|
|
|
|
used_tables_cache= parent->get_used_tables_cache();
|
|
|
|
const_item_cache= parent->get_const_item_cache();
|
2004-07-04 07:46:28 +02:00
|
|
|
|
2004-09-10 12:09:27 +02:00
|
|
|
/*
|
2005-02-08 23:50:45 +01:00
|
|
|
this subquery always creates during preparation, so we can assign
|
2004-09-10 12:09:27 +02:00
|
|
|
thd here
|
|
|
|
*/
|
|
|
|
thd= thd_param;
|
|
|
|
|
2003-08-12 11:38:03 +02:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2004-11-18 17:10:07 +01:00
|
|
|
void Item_maxmin_subselect::cleanup()
|
|
|
|
{
|
2004-12-07 20:18:15 +01:00
|
|
|
DBUG_ENTER("Item_maxmin_subselect::cleanup");
|
|
|
|
Item_singlerow_subselect::cleanup();
|
|
|
|
|
2004-11-18 17:10:07 +01:00
|
|
|
/*
|
2004-12-07 20:18:15 +01:00
|
|
|
By default it is TRUE to avoid TRUE reporting by
|
2004-11-18 17:10:07 +01:00
|
|
|
Item_func_not_all/Item_func_nop_all if this item was never called.
|
|
|
|
|
|
|
|
Engine exec() set it to FALSE by reset_value_registration() call.
|
2004-12-07 20:18:15 +01:00
|
|
|
select_max_min_finder_subselect::send_data() set it back to TRUE if some
|
|
|
|
value will be found.
|
2004-11-18 17:10:07 +01:00
|
|
|
*/
|
|
|
|
was_values= TRUE;
|
2004-12-07 20:18:15 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2004-11-18 17:10:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
void Item_maxmin_subselect::print(String *str)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append(max?"<max>":"<min>", 5);
|
2003-10-16 14:54:47 +02:00
|
|
|
Item_singlerow_subselect::print(str);
|
|
|
|
}
|
|
|
|
|
2004-11-18 17:10:07 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_singlerow_subselect::reset()
|
2002-09-28 17:34:56 +02:00
|
|
|
{
|
2002-12-19 06:38:32 +01:00
|
|
|
null_value= 1;
|
|
|
|
if (value)
|
|
|
|
value->null_value= 1;
|
2002-09-28 17:34:56 +02:00
|
|
|
}
|
|
|
|
|
2004-11-18 17:10:07 +01:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
Item_subselect::trans_res
|
2003-07-02 00:45:22 +02:00
|
|
|
Item_singlerow_subselect::select_transformer(JOIN *join)
|
2002-12-26 00:28:59 +01:00
|
|
|
{
|
2004-02-08 19:14:13 +01:00
|
|
|
if (changed)
|
|
|
|
return RES_OK;
|
2004-07-04 07:46:28 +02:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
SELECT_LEX *select_lex= join->select_lex;
|
2005-09-02 15:21:19 +02:00
|
|
|
Query_arena *arena= thd->stmt_arena;
|
2004-10-29 18:26:52 +02:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
if (!select_lex->master_unit()->first_select()->next_select() &&
|
|
|
|
!select_lex->table_list.elements &&
|
2002-12-31 17:39:16 +01:00
|
|
|
select_lex->item_list.elements == 1 &&
|
2004-10-27 20:11:06 +02:00
|
|
|
!select_lex->item_list.head()->with_sum_func &&
|
2003-02-02 22:30:01 +01:00
|
|
|
/*
|
|
|
|
We cant change name of Item_field or Item_ref, because it will
|
|
|
|
prevent it's correct resolving, but we should save name of
|
|
|
|
removed item => we do not make optimization if top item of
|
|
|
|
list is field or reference.
|
|
|
|
TODO: solve above problem
|
|
|
|
*/
|
2002-12-31 17:39:16 +01:00
|
|
|
!(select_lex->item_list.head()->type() == FIELD_ITEM ||
|
2004-10-27 20:11:06 +02:00
|
|
|
select_lex->item_list.head()->type() == REF_ITEM) &&
|
|
|
|
/*
|
2005-02-08 23:50:45 +01:00
|
|
|
switch off this optimization for prepare statement,
|
2004-10-27 20:11:06 +02:00
|
|
|
because we do not rollback this changes
|
|
|
|
TODO: make rollback for it, or special name resolving mode in 5.0.
|
|
|
|
*/
|
2005-06-02 22:02:47 +02:00
|
|
|
!arena->is_stmt_prepare_or_first_sp_execute()
|
2002-12-31 17:39:16 +01:00
|
|
|
)
|
2002-12-26 00:28:59 +01:00
|
|
|
{
|
2004-07-04 07:46:28 +02:00
|
|
|
|
2002-12-26 00:28:59 +01:00
|
|
|
have_to_be_excluded= 1;
|
2004-09-10 01:22:44 +02:00
|
|
|
if (thd->lex->describe)
|
2002-12-26 00:28:59 +01:00
|
|
|
{
|
|
|
|
char warn_buff[MYSQL_ERRMSG_SIZE];
|
|
|
|
sprintf(warn_buff, ER(ER_SELECT_REDUCED), select_lex->select_number);
|
2004-09-10 01:22:44 +02:00
|
|
|
push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
|
2002-12-26 00:28:59 +01:00
|
|
|
ER_SELECT_REDUCED, warn_buff);
|
|
|
|
}
|
|
|
|
substitution= select_lex->item_list.head();
|
2003-07-02 12:12:18 +02:00
|
|
|
/*
|
2005-02-08 23:50:45 +01:00
|
|
|
as far as we moved content to upper level, field which depend of
|
2003-07-02 12:12:18 +02:00
|
|
|
'upper' select is not really dependent => we remove this dependence
|
|
|
|
*/
|
This changeset is largely a handler cleanup changeset (WL#3281), but includes fixes and cleanups that was found necessary while testing the handler changes
Changes that requires code changes in other code of other storage engines.
(Note that all changes are very straightforward and one should find all issues
by compiling a --debug build and fixing all compiler errors and all
asserts in field.cc while running the test suite),
- New optional handler function introduced: reset()
This is called after every DML statement to make it easy for a handler to
statement specific cleanups.
(The only case it's not called is if force the file to be closed)
- handler::extra(HA_EXTRA_RESET) is removed. Code that was there before
should be moved to handler::reset()
- table->read_set contains a bitmap over all columns that are needed
in the query. read_row() and similar functions only needs to read these
columns
- table->write_set contains a bitmap over all columns that will be updated
in the query. write_row() and update_row() only needs to update these
columns.
The above bitmaps should now be up to date in all context
(including ALTER TABLE, filesort()).
The handler is informed of any changes to the bitmap after
fix_fields() by calling the virtual function
handler::column_bitmaps_signal(). If the handler does caching of
these bitmaps (instead of using table->read_set, table->write_set),
it should redo the caching in this code. as the signal() may be sent
several times, it's probably best to set a variable in the signal
and redo the caching on read_row() / write_row() if the variable was
set.
- Removed the read_set and write_set bitmap objects from the handler class
- Removed all column bit handling functions from the handler class.
(Now one instead uses the normal bitmap functions in my_bitmap.c instead
of handler dedicated bitmap functions)
- field->query_id is removed. One should instead instead check
table->read_set and table->write_set if a field is used in the query.
- handler::extra(HA_EXTRA_RETRIVE_ALL_COLS) and
handler::extra(HA_EXTRA_RETRIEVE_PRIMARY_KEY) are removed. One should now
instead use table->read_set to check for which columns to retrieve.
- If a handler needs to call Field->val() or Field->store() on columns
that are not used in the query, one should install a temporary
all-columns-used map while doing so. For this, we provide the following
functions:
my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->read_set);
field->val();
dbug_tmp_restore_column_map(table->read_set, old_map);
and similar for the write map:
my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->write_set);
field->val();
dbug_tmp_restore_column_map(table->write_set, old_map);
If this is not done, you will sooner or later hit a DBUG_ASSERT
in the field store() / val() functions.
(For not DBUG binaries, the dbug_tmp_restore_column_map() and
dbug_tmp_restore_column_map() are inline dummy functions and should
be optimized away be the compiler).
- If one needs to temporary set the column map for all binaries (and not
just to avoid the DBUG_ASSERT() in the Field::store() / Field::val()
methods) one should use the functions tmp_use_all_columns() and
tmp_restore_column_map() instead of the above dbug_ variants.
- All 'status' fields in the handler base class (like records,
data_file_length etc) are now stored in a 'stats' struct. This makes
it easier to know what status variables are provided by the base
handler. This requires some trivial variable names in the extra()
function.
- New virtual function handler::records(). This is called to optimize
COUNT(*) if (handler::table_flags() & HA_HAS_RECORDS()) is true.
(stats.records is not supposed to be an exact value. It's only has to
be 'reasonable enough' for the optimizer to be able to choose a good
optimization path).
- Non virtual handler::init() function added for caching of virtual
constants from engine.
- Removed has_transactions() virtual method. Now one should instead return
HA_NO_TRANSACTIONS in table_flags() if the table handler DOES NOT support
transactions.
- The 'xxxx_create_handler()' function now has a MEM_ROOT_root argument
that is to be used with 'new handler_name()' to allocate the handler
in the right area. The xxxx_create_handler() function is also
responsible for any initialization of the object before returning.
For example, one should change:
static handler *myisam_create_handler(TABLE_SHARE *table)
{
return new ha_myisam(table);
}
->
static handler *myisam_create_handler(TABLE_SHARE *table, MEM_ROOT *mem_root)
{
return new (mem_root) ha_myisam(table);
}
- New optional virtual function: use_hidden_primary_key().
This is called in case of an update/delete when
(table_flags() and HA_PRIMARY_KEY_REQUIRED_FOR_DELETE) is defined
but we don't have a primary key. This allows the handler to take precisions
in remembering any hidden primary key to able to update/delete any
found row. The default handler marks all columns to be read.
- handler::table_flags() now returns a ulonglong (to allow for more flags).
- New/changed table_flags()
- HA_HAS_RECORDS Set if ::records() is supported
- HA_NO_TRANSACTIONS Set if engine doesn't support transactions
- HA_PRIMARY_KEY_REQUIRED_FOR_DELETE
Set if we should mark all primary key columns for
read when reading rows as part of a DELETE
statement. If there is no primary key,
all columns are marked for read.
- HA_PARTIAL_COLUMN_READ Set if engine will not read all columns in some
cases (based on table->read_set)
- HA_PRIMARY_KEY_ALLOW_RANDOM_ACCESS
Renamed to HA_PRIMARY_KEY_REQUIRED_FOR_POSITION.
- HA_DUPP_POS Renamed to HA_DUPLICATE_POS
- HA_REQUIRES_KEY_COLUMNS_FOR_DELETE
Set this if we should mark ALL key columns for
read when when reading rows as part of a DELETE
statement. In case of an update we will mark
all keys for read for which key part changed
value.
- HA_STATS_RECORDS_IS_EXACT
Set this if stats.records is exact.
(This saves us some extra records() calls
when optimizing COUNT(*))
- Removed table_flags()
- HA_NOT_EXACT_COUNT Now one should instead use HA_HAS_RECORDS if
handler::records() gives an exact count() and
HA_STATS_RECORDS_IS_EXACT if stats.records is exact.
- HA_READ_RND_SAME Removed (no one supported this one)
- Removed not needed functions ha_retrieve_all_cols() and ha_retrieve_all_pk()
- Renamed handler::dupp_pos to handler::dup_pos
- Removed not used variable handler::sortkey
Upper level handler changes:
- ha_reset() now does some overall checks and calls ::reset()
- ha_table_flags() added. This is a cached version of table_flags(). The
cache is updated on engine creation time and updated on open.
MySQL level changes (not obvious from the above):
- DBUG_ASSERT() added to check that column usage matches what is set
in the column usage bit maps. (This found a LOT of bugs in current
column marking code).
- In 5.1 before, all used columns was marked in read_set and only updated
columns was marked in write_set. Now we only mark columns for which we
need a value in read_set.
- Column bitmaps are created in open_binary_frm() and open_table_from_share().
(Before this was in table.cc)
- handler::table_flags() calls are replaced with handler::ha_table_flags()
- For calling field->val() you must have the corresponding bit set in
table->read_set. For calling field->store() you must have the
corresponding bit set in table->write_set. (There are asserts in
all store()/val() functions to catch wrong usage)
- thd->set_query_id is renamed to thd->mark_used_columns and instead
of setting this to an integer value, this has now the values:
MARK_COLUMNS_NONE, MARK_COLUMNS_READ, MARK_COLUMNS_WRITE
Changed also all variables named 'set_query_id' to mark_used_columns.
- In filesort() we now inform the handler of exactly which columns are needed
doing the sort and choosing the rows.
- The TABLE_SHARE object has a 'all_set' column bitmap one can use
when one needs a column bitmap with all columns set.
(This is used for table->use_all_columns() and other places)
- The TABLE object has 3 column bitmaps:
- def_read_set Default bitmap for columns to be read
- def_write_set Default bitmap for columns to be written
- tmp_set Can be used as a temporary bitmap when needed.
The table object has also two pointer to bitmaps read_set and write_set
that the handler should use to find out which columns are used in which way.
- count() optimization now calls handler::records() instead of using
handler->stats.records (if (table_flags() & HA_HAS_RECORDS) is true).
- Added extra argument to Item::walk() to indicate if we should also
traverse sub queries.
- Added TABLE parameter to cp_buffer_from_ref()
- Don't close tables created with CREATE ... SELECT but keep them in
the table cache. (Faster usage of newly created tables).
New interfaces:
- table->clear_column_bitmaps() to initialize the bitmaps for tables
at start of new statements.
- table->column_bitmaps_set() to set up new column bitmaps and signal
the handler about this.
- table->column_bitmaps_set_no_signal() for some few cases where we need
to setup new column bitmaps but don't signal the handler (as the handler
has already been signaled about these before). Used for the momement
only in opt_range.cc when doing ROR scans.
- table->use_all_columns() to install a bitmap where all columns are marked
as use in the read and the write set.
- table->default_column_bitmaps() to install the normal read and write
column bitmaps, but not signaling the handler about this.
This is mainly used when creating TABLE instances.
- table->mark_columns_needed_for_delete(),
table->mark_columns_needed_for_delete() and
table->mark_columns_needed_for_insert() to allow us to put additional
columns in column usage maps if handler so requires.
(The handler indicates what it neads in handler->table_flags())
- table->prepare_for_position() to allow us to tell handler that it
needs to read primary key parts to be able to store them in
future table->position() calls.
(This replaces the table->file->ha_retrieve_all_pk function)
- table->mark_auto_increment_column() to tell handler are going to update
columns part of any auto_increment key.
- table->mark_columns_used_by_index() to mark all columns that is part of
an index. It will also send extra(HA_EXTRA_KEYREAD) to handler to allow
it to quickly know that it only needs to read colums that are part
of the key. (The handler can also use the column map for detecting this,
but simpler/faster handler can just monitor the extra() call).
- table->mark_columns_used_by_index_no_reset() to in addition to other columns,
also mark all columns that is used by the given key.
- table->restore_column_maps_after_mark_index() to restore to default
column maps after a call to table->mark_columns_used_by_index().
- New item function register_field_in_read_map(), for marking used columns
in table->read_map. Used by filesort() to mark all used columns
- Maintain in TABLE->merge_keys set of all keys that are used in query.
(Simplices some optimization loops)
- Maintain Field->part_of_key_not_clustered which is like Field->part_of_key
but the field in the clustered key is not assumed to be part of all index.
(used in opt_range.cc for faster loops)
- dbug_tmp_use_all_columns(), dbug_tmp_restore_column_map()
tmp_use_all_columns() and tmp_restore_column_map() functions to temporally
mark all columns as usable. The 'dbug_' version is primarily intended
inside a handler when it wants to just call Field:store() & Field::val()
functions, but don't need the column maps set for any other usage.
(ie:: bitmap_is_set() is never called)
- We can't use compare_records() to skip updates for handlers that returns
a partial column set and the read_set doesn't cover all columns in the
write set. The reason for this is that if we have a column marked only for
write we can't in the MySQL level know if the value changed or not.
The reason this worked before was that MySQL marked all to be written
columns as also to be read. The new 'optimal' bitmaps exposed this 'hidden
bug'.
- open_table_from_share() does not anymore setup temporary MEM_ROOT
object as a thread specific variable for the handler. Instead we
send the to-be-used MEMROOT to get_new_handler().
(Simpler, faster code)
Bugs fixed:
- Column marking was not done correctly in a lot of cases.
(ALTER TABLE, when using triggers, auto_increment fields etc)
(Could potentially result in wrong values inserted in table handlers
relying on that the old column maps or field->set_query_id was correct)
Especially when it comes to triggers, there may be cases where the
old code would cause lost/wrong values for NDB and/or InnoDB tables.
- Split thd->options flag OPTION_STATUS_NO_TRANS_UPDATE to two flags:
OPTION_STATUS_NO_TRANS_UPDATE and OPTION_KEEP_LOG.
This allowed me to remove some wrong warnings about:
"Some non-transactional changed tables couldn't be rolled back"
- Fixed handling of INSERT .. SELECT and CREATE ... SELECT that wrongly reset
(thd->options & OPTION_STATUS_NO_TRANS_UPDATE) which caused us to loose
some warnings about
"Some non-transactional changed tables couldn't be rolled back")
- Fixed use of uninitialized memory in ha_ndbcluster.cc::delete_table()
which could cause delete_table to report random failures.
- Fixed core dumps for some tests when running with --debug
- Added missing FN_LIBCHAR in mysql_rm_tmp_tables()
(This has probably caused us to not properly remove temporary files after
crash)
- slow_logs was not properly initialized, which could maybe cause
extra/lost entries in slow log.
- If we get an duplicate row on insert, change column map to read and
write all columns while retrying the operation. This is required by
the definition of REPLACE and also ensures that fields that are only
part of UPDATE are properly handled. This fixed a bug in NDB and
REPLACE where REPLACE wrongly copied some column values from the replaced
row.
- For table handler that doesn't support NULL in keys, we would give an error
when creating a primary key with NULL fields, even after the fields has been
automaticly converted to NOT NULL.
- Creating a primary key on a SPATIAL key, would fail if field was not
declared as NOT NULL.
Cleanups:
- Removed not used condition argument to setup_tables
- Removed not needed item function reset_query_id_processor().
- Field->add_index is removed. Now this is instead maintained in
(field->flags & FIELD_IN_ADD_INDEX)
- Field->fieldnr is removed (use field->field_index instead)
- New argument to filesort() to indicate that it should return a set of
row pointers (not used columns). This allowed me to remove some references
to sql_command in filesort and should also enable us to return column
results in some cases where we couldn't before.
- Changed column bitmap handling in opt_range.cc to be aligned with TABLE
bitmap, which allowed me to use bitmap functions instead of looping over
all fields to create some needed bitmaps. (Faster and smaller code)
- Broke up found too long lines
- Moved some variable declaration at start of function for better code
readability.
- Removed some not used arguments from functions.
(setup_fields(), mysql_prepare_insert_check_table())
- setup_fields() now takes an enum instead of an int for marking columns
usage.
- For internal temporary tables, use handler::write_row(),
handler::delete_row() and handler::update_row() instead of
handler::ha_xxxx() for faster execution.
- Changed some constants to enum's and define's.
- Using separate column read and write sets allows for easier checking
of timestamp field was set by statement.
- Remove calls to free_io_cache() as this is now done automaticly in ha_reset()
- Don't build table->normalized_path as this is now identical to table->path
(after bar's fixes to convert filenames)
- Fixed some missed DBUG_PRINT(.."%lx") to use "0x%lx" to make it easier to
do comparision with the 'convert-dbug-for-diff' tool.
Things left to do in 5.1:
- We wrongly log failed CREATE TABLE ... SELECT in some cases when using
row based logging (as shown by testcase binlog_row_mix_innodb_myisam.result)
Mats has promised to look into this.
- Test that my fix for CREATE TABLE ... SELECT is indeed correct.
(I added several test cases for this, but in this case it's better that
someone else also tests this throughly).
Lars has promosed to do this.
2006-06-04 17:52:22 +02:00
|
|
|
substitution->walk(&Item::remove_dependence_processor, 0,
|
2003-07-02 12:12:18 +02:00
|
|
|
(byte *) select_lex->outer_select());
|
2005-03-30 09:07:08 +02:00
|
|
|
/* SELECT without FROM clause can't have WHERE or HAVING clause */
|
|
|
|
DBUG_ASSERT(join->conds == 0 && join->having == 0);
|
2003-08-28 12:21:30 +02:00
|
|
|
return RES_REDUCE;
|
2002-12-26 00:28:59 +01:00
|
|
|
}
|
2003-08-28 12:21:30 +02:00
|
|
|
return RES_OK;
|
2002-12-26 00:28:59 +01:00
|
|
|
}
|
|
|
|
|
2004-10-29 18:26:52 +02:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_singlerow_subselect::store(uint i, Item *item)
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
row[i]->store(item);
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
enum Item_result Item_singlerow_subselect::result_type() const
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2002-12-19 06:38:32 +01:00
|
|
|
return engine->type();
|
|
|
|
}
|
|
|
|
|
2006-11-07 17:16:17 +01:00
|
|
|
/*
|
|
|
|
Don't rely on the result type to calculate field type.
|
|
|
|
Ask the engine instead.
|
|
|
|
*/
|
|
|
|
enum_field_types Item_singlerow_subselect::field_type() const
|
|
|
|
{
|
|
|
|
return engine->field_type();
|
|
|
|
}
|
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_singlerow_subselect::fix_length_and_dec()
|
2002-09-28 17:34:56 +02:00
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
if ((max_columns= engine->cols()) == 1)
|
|
|
|
{
|
|
|
|
engine->fix_length_and_dec(row= &value);
|
|
|
|
}
|
|
|
|
else
|
2002-12-19 06:38:32 +01:00
|
|
|
{
|
2003-11-28 11:18:13 +01:00
|
|
|
if (!(row= (Item_cache**) sql_alloc(sizeof(Item_cache*)*max_columns)))
|
2002-12-19 06:38:33 +01:00
|
|
|
return;
|
|
|
|
engine->fix_length_and_dec(row);
|
|
|
|
value= *row;
|
2002-12-19 06:38:32 +01:00
|
|
|
}
|
2006-05-25 09:39:18 +02:00
|
|
|
unsigned_flag= value->unsigned_flag;
|
2004-10-27 20:11:06 +02:00
|
|
|
/*
|
|
|
|
If there are not tables in subquery then ability to have NULL value
|
|
|
|
depends on SELECT list (if single row subquery have tables then it
|
|
|
|
always can be NULL if there are not records fetched).
|
|
|
|
*/
|
|
|
|
if (engine->no_tables())
|
|
|
|
maybe_null= engine->may_be_null();
|
2002-09-28 17:34:56 +02:00
|
|
|
}
|
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
uint Item_singlerow_subselect::cols()
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
return engine->cols();
|
|
|
|
}
|
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
bool Item_singlerow_subselect::check_cols(uint c)
|
2002-12-19 06:38:33 +01:00
|
|
|
{
|
|
|
|
if (c != engine->cols())
|
|
|
|
{
|
2003-10-06 21:35:05 +02:00
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), c);
|
2002-12-19 06:38:33 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
bool Item_singlerow_subselect::null_inside()
|
2002-12-19 06:38:33 +01:00
|
|
|
{
|
|
|
|
for (uint i= 0; i < max_columns ; i++)
|
|
|
|
{
|
|
|
|
if (row[i]->null_value)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_singlerow_subselect::bring_value()
|
2002-12-19 06:38:33 +01:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
exec(FALSE);
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2004-11-11 19:39:35 +01:00
|
|
|
double Item_singlerow_subselect::val_real()
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (!exec(FALSE) && !value->null_value)
|
2002-12-19 06:38:32 +01:00
|
|
|
{
|
|
|
|
null_value= 0;
|
2004-11-11 19:39:35 +01:00
|
|
|
return value->val_real();
|
2002-12-19 06:38:32 +01:00
|
|
|
}
|
|
|
|
else
|
2002-10-07 21:21:17 +02:00
|
|
|
{
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2002-06-19 16:52:44 +02:00
|
|
|
return 0;
|
2002-10-07 21:21:17 +02:00
|
|
|
}
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2004-07-04 07:46:28 +02:00
|
|
|
longlong Item_singlerow_subselect::val_int()
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (!exec(FALSE) && !value->null_value)
|
2002-12-19 06:38:32 +01:00
|
|
|
{
|
|
|
|
null_value= 0;
|
|
|
|
return value->val_int();
|
|
|
|
}
|
|
|
|
else
|
2002-10-07 21:21:17 +02:00
|
|
|
{
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2002-06-19 16:52:44 +02:00
|
|
|
return 0;
|
2002-10-07 21:21:17 +02:00
|
|
|
}
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
String *Item_singlerow_subselect::val_str(String *str)
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
if (!exec(FALSE) && !value->null_value)
|
2002-12-19 06:38:32 +01:00
|
|
|
{
|
|
|
|
null_value= 0;
|
|
|
|
return value->val_str(str);
|
|
|
|
}
|
|
|
|
else
|
2002-10-07 21:21:17 +02:00
|
|
|
{
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2002-06-19 16:52:44 +02:00
|
|
|
return 0;
|
2002-10-07 21:21:17 +02:00
|
|
|
}
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
my_decimal *Item_singlerow_subselect::val_decimal(my_decimal *decimal_value)
|
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
if (!exec(FALSE) && !value->null_value)
|
2005-02-08 23:50:45 +01:00
|
|
|
{
|
|
|
|
null_value= 0;
|
|
|
|
return value->val_decimal(decimal_value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Item_singlerow_subselect::val_bool()
|
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
if (!exec(FALSE) && !value->null_value)
|
2005-02-08 23:50:45 +01:00
|
|
|
{
|
|
|
|
null_value= 0;
|
|
|
|
return value->val_bool();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-02 21:19:41 +02:00
|
|
|
Item_exists_subselect::Item_exists_subselect(st_select_lex *select_lex):
|
2002-10-08 22:49:59 +02:00
|
|
|
Item_subselect()
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2002-10-27 22:27:00 +01:00
|
|
|
DBUG_ENTER("Item_exists_subselect::Item_exists_subselect");
|
2005-02-08 23:50:45 +01:00
|
|
|
bool val_bool();
|
2003-10-02 21:19:41 +02:00
|
|
|
init(select_lex, new select_exists_subselect(this));
|
2002-06-19 16:52:44 +02:00
|
|
|
max_columns= UINT_MAX;
|
|
|
|
null_value= 0; //can't be NULL
|
|
|
|
maybe_null= 0; //can't be NULL
|
|
|
|
value= 0;
|
2002-10-27 22:27:00 +01:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
|
|
|
void Item_exists_subselect::print(String *str)
|
|
|
|
{
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN("exists"));
|
2003-10-16 14:54:47 +02:00
|
|
|
Item_subselect::print(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
bool Item_in_subselect::test_limit(SELECT_LEX_UNIT *unit)
|
|
|
|
{
|
2003-07-03 01:30:52 +02:00
|
|
|
if (unit->fake_select_lex &&
|
|
|
|
unit->fake_select_lex->test_limit())
|
2003-05-14 20:51:33 +02:00
|
|
|
return(1);
|
2003-07-02 00:45:22 +02:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
SELECT_LEX *sl= unit->first_select();
|
|
|
|
for (; sl; sl= sl->next_select())
|
|
|
|
{
|
2003-07-02 00:45:22 +02:00
|
|
|
if (sl->test_limit())
|
2003-05-14 20:51:33 +02:00
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2003-10-02 21:19:41 +02:00
|
|
|
Item_in_subselect::Item_in_subselect(Item * left_exp,
|
2002-10-27 22:27:00 +01:00
|
|
|
st_select_lex *select_lex):
|
2006-10-31 18:51:09 +01:00
|
|
|
Item_exists_subselect(), optimizer(0), transformed(0),
|
|
|
|
enable_pushed_conds(TRUE), upper_item(0)
|
2002-10-27 22:27:00 +01:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_in_subselect::Item_in_subselect");
|
2002-11-07 22:45:19 +01:00
|
|
|
left_expr= left_exp;
|
2003-10-02 21:19:41 +02:00
|
|
|
init(select_lex, new select_exists_subselect(this));
|
2002-11-07 22:45:19 +01:00
|
|
|
max_columns= UINT_MAX;
|
2002-12-06 20:55:53 +01:00
|
|
|
maybe_null= 1;
|
2003-05-14 20:51:33 +02:00
|
|
|
abort_on_null= 0;
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2003-07-02 00:45:22 +02:00
|
|
|
//if test_limit will fail then error will be reported to client
|
2003-05-14 20:51:33 +02:00
|
|
|
test_limit(select_lex->master_unit());
|
2002-11-07 22:45:19 +01:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2003-10-02 21:19:41 +02:00
|
|
|
Item_allany_subselect::Item_allany_subselect(Item * left_exp,
|
2006-07-21 01:04:04 +02:00
|
|
|
chooser_compare_func_creator fc,
|
2003-10-16 14:54:47 +02:00
|
|
|
st_select_lex *select_lex,
|
|
|
|
bool all_arg)
|
2006-07-22 14:18:28 +02:00
|
|
|
:Item_in_subselect(), func_creator(fc), all(all_arg)
|
2002-11-07 22:45:19 +01:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_in_subselect::Item_in_subselect");
|
|
|
|
left_expr= left_exp;
|
2006-07-21 01:04:04 +02:00
|
|
|
func= func_creator(all_arg);
|
2003-10-02 21:19:41 +02:00
|
|
|
init(select_lex, new select_exists_subselect(this));
|
2002-12-19 20:15:09 +01:00
|
|
|
max_columns= 1;
|
2003-05-14 20:51:33 +02:00
|
|
|
abort_on_null= 0;
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2003-07-02 00:45:22 +02:00
|
|
|
//if test_limit will fail then error will be reported to client
|
2003-05-14 20:51:33 +02:00
|
|
|
test_limit(select_lex->master_unit());
|
2002-10-27 22:27:00 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2002-06-19 16:52:44 +02:00
|
|
|
}
|
|
|
|
|
2002-10-27 22:27:00 +01:00
|
|
|
|
2002-09-28 17:34:56 +02:00
|
|
|
void Item_exists_subselect::fix_length_and_dec()
|
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
decimals= 0;
|
2002-12-06 20:55:53 +01:00
|
|
|
max_length= 1;
|
2002-12-19 20:15:09 +01:00
|
|
|
max_columns= engine->cols();
|
2005-06-07 12:11:36 +02:00
|
|
|
/* We need only 1 row to determine existence */
|
2005-06-08 08:37:43 +02:00
|
|
|
unit->global_parameters->select_limit= new Item_int((int32) 1);
|
2002-09-28 17:34:56 +02:00
|
|
|
}
|
|
|
|
|
2004-11-11 19:39:35 +01:00
|
|
|
double Item_exists_subselect::val_real()
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(FALSE))
|
2002-10-07 21:21:17 +02:00
|
|
|
{
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2002-06-19 16:52:44 +02:00
|
|
|
return 0;
|
2002-10-07 21:21:17 +02:00
|
|
|
}
|
2002-06-19 16:52:44 +02:00
|
|
|
return (double) value;
|
|
|
|
}
|
|
|
|
|
2004-07-04 07:46:28 +02:00
|
|
|
longlong Item_exists_subselect::val_int()
|
2002-06-19 16:52:44 +02:00
|
|
|
{
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(FALSE))
|
2002-10-07 21:21:17 +02:00
|
|
|
{
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
2002-06-19 16:52:44 +02:00
|
|
|
return 0;
|
2002-10-07 21:21:17 +02:00
|
|
|
}
|
2002-06-19 16:52:44 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
String *Item_exists_subselect::val_str(String *str)
|
|
|
|
{
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(FALSE))
|
2002-10-07 21:21:17 +02:00
|
|
|
{
|
2002-12-06 20:55:53 +01:00
|
|
|
reset();
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-01 01:14:30 +02:00
|
|
|
str->set((ulonglong)value,&my_charset_bin);
|
2002-12-06 20:55:53 +01:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
|
|
|
|
my_decimal *Item_exists_subselect::val_decimal(my_decimal *decimal_value)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(FALSE))
|
2005-02-08 23:50:45 +01:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int2my_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
|
|
|
|
return decimal_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Item_exists_subselect::val_bool()
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(FALSE))
|
2005-02-08 23:50:45 +01:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
return 0;
|
|
|
|
}
|
2005-03-19 01:12:25 +01:00
|
|
|
return value != 0;
|
2005-02-08 23:50:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-11 19:39:35 +01:00
|
|
|
double Item_in_subselect::val_real()
|
2002-12-06 20:55:53 +01:00
|
|
|
{
|
2005-03-30 09:07:08 +02:00
|
|
|
/*
|
|
|
|
As far as Item_in_subselect called only from Item_in_optimizer this
|
|
|
|
method should not be used
|
|
|
|
*/
|
|
|
|
DBUG_ASSERT(0);
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-20 08:05:53 +02:00
|
|
|
null_value= 0;
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(!enable_pushed_conds))
|
2002-12-06 20:55:53 +01:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
null_value= 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (was_null && !value)
|
|
|
|
null_value= 1;
|
|
|
|
return (double) value;
|
|
|
|
}
|
|
|
|
|
2005-03-30 09:07:08 +02:00
|
|
|
|
2004-07-04 07:46:28 +02:00
|
|
|
longlong Item_in_subselect::val_int()
|
2002-12-06 20:55:53 +01:00
|
|
|
{
|
2005-03-31 09:39:48 +02:00
|
|
|
/*
|
|
|
|
As far as Item_in_subselect called only from Item_in_optimizer this
|
|
|
|
method should not be used
|
|
|
|
*/
|
|
|
|
DBUG_ASSERT(0);
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-20 08:05:53 +02:00
|
|
|
null_value= 0;
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(!enable_pushed_conds))
|
2002-12-06 20:55:53 +01:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
null_value= 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (was_null && !value)
|
|
|
|
null_value= 1;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2005-03-30 09:07:08 +02:00
|
|
|
|
2002-12-06 20:55:53 +01:00
|
|
|
String *Item_in_subselect::val_str(String *str)
|
|
|
|
{
|
2005-03-30 09:07:08 +02:00
|
|
|
/*
|
|
|
|
As far as Item_in_subselect called only from Item_in_optimizer this
|
|
|
|
method should not be used
|
|
|
|
*/
|
|
|
|
DBUG_ASSERT(0);
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-20 08:05:53 +02:00
|
|
|
null_value= 0;
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(!enable_pushed_conds))
|
2002-12-06 20:55:53 +01:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
null_value= 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (was_null && !value)
|
|
|
|
{
|
|
|
|
null_value= 1;
|
2002-06-19 16:52:44 +02:00
|
|
|
return 0;
|
2002-10-07 21:21:17 +02:00
|
|
|
}
|
2005-04-01 01:14:30 +02:00
|
|
|
str->set((ulonglong)value, &my_charset_bin);
|
2002-06-19 16:52:44 +02:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2002-11-07 22:45:19 +01:00
|
|
|
|
2005-04-01 01:14:30 +02:00
|
|
|
bool Item_in_subselect::val_bool()
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-20 21:41:27 +02:00
|
|
|
null_value= 0;
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(!enable_pushed_conds))
|
2005-04-01 01:14:30 +02:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
null_value= 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (was_null && !value)
|
|
|
|
null_value= 1;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
my_decimal *Item_in_subselect::val_decimal(my_decimal *decimal_value)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
As far as Item_in_subselect called only from Item_in_optimizer this
|
|
|
|
method should not be used
|
|
|
|
*/
|
|
|
|
DBUG_ASSERT(0);
|
2006-10-20 21:41:27 +02:00
|
|
|
null_value= 0;
|
2005-04-01 01:14:30 +02:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2006-10-31 18:51:09 +01:00
|
|
|
if (exec(!enable_pushed_conds))
|
2005-04-01 01:14:30 +02:00
|
|
|
{
|
|
|
|
reset();
|
|
|
|
null_value= 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (was_null && !value)
|
|
|
|
null_value= 1;
|
|
|
|
int2my_decimal(E_DEC_FATAL_ERROR, value, 0, decimal_value);
|
|
|
|
return decimal_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
Rewrite a single-column IN/ALL/ANY subselect
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
Item_in_subselect::single_value_transformer()
|
2006-10-31 22:27:51 +01:00
|
|
|
join Join object of the subquery (i.e. 'child' join).
|
|
|
|
func Subquery comparison creator
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Rewrite a single-column subquery using rule-based approach. The subquery
|
|
|
|
|
2006-10-31 22:27:51 +01:00
|
|
|
oe $cmp$ (SELECT ie FROM ... WHERE subq_where ... HAVING subq_having)
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
First, try to convert the subquery to scalar-result subquery in one of
|
|
|
|
the forms:
|
|
|
|
|
|
|
|
- oe $cmp$ (SELECT MAX(...) ) // handled by Item_singlerow_subselect
|
2006-10-31 22:27:51 +01:00
|
|
|
- oe $cmp$ <max>(SELECT ...) // handled by Item_maxmin_subselect
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
If that fails, the subquery will be handled with class Item_in_optimizer,
|
|
|
|
Inject the predicates into subquery, i.e. convert it to:
|
|
|
|
|
|
|
|
- If the subquery has aggregates, GROUP BY, or HAVING, convert to
|
|
|
|
|
2006-10-31 22:27:51 +01:00
|
|
|
SELECT ie FROM ... HAVING subq_having AND
|
2006-10-31 18:51:09 +01:00
|
|
|
trigcond(oe $cmp$ ref_or_null_helper<ie>)
|
|
|
|
|
|
|
|
the addition is wrapped into trigger only when we want to distinguish
|
|
|
|
between NULL and FALSE results.
|
|
|
|
|
2006-10-31 22:27:51 +01:00
|
|
|
- Otherwise (no aggregates/GROUP BY/HAVING) convert it to one of the
|
|
|
|
following:
|
2006-10-31 18:51:09 +01:00
|
|
|
|
2006-10-31 22:27:51 +01:00
|
|
|
= If we don't need to distinguish between NULL and FALSE subquery:
|
|
|
|
|
|
|
|
SELECT 1 FROM ... WHERE (oe $cmp$ ie) AND subq_where
|
2006-10-31 18:51:09 +01:00
|
|
|
|
2006-10-31 22:27:51 +01:00
|
|
|
= If we need to distinguish between those:
|
|
|
|
|
|
|
|
SELECT 1 FROM ...
|
|
|
|
WHERE subq_where AND trigcond((oe $cmp$ ie) OR (ie IS NULL))
|
|
|
|
HAVING trigcond(<is_not_null_test>(ie))
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
RETURN
|
2006-10-31 22:27:51 +01:00
|
|
|
RES_OK - OK, either subquery was transformed, or appopriate
|
|
|
|
predicates where injected into it.
|
2006-10-31 18:51:09 +01:00
|
|
|
RES_REDUCE - The subquery was reduced to non-subquery
|
|
|
|
RES_ERROR - Error
|
|
|
|
*/
|
2004-10-04 16:58:06 +02:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
Item_subselect::trans_res
|
2003-07-02 00:45:22 +02:00
|
|
|
Item_in_subselect::single_value_transformer(JOIN *join,
|
2003-11-03 11:28:36 +01:00
|
|
|
Comp_creator *func)
|
2002-11-07 22:45:19 +01:00
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
Item_subselect::trans_res result= RES_ERROR;
|
2003-05-14 20:51:33 +02:00
|
|
|
SELECT_LEX *select_lex= join->select_lex;
|
2005-05-30 19:48:40 +02:00
|
|
|
DBUG_ENTER("Item_in_subselect::single_value_transformer");
|
2004-09-06 14:14:10 +02:00
|
|
|
|
2004-10-04 16:58:06 +02:00
|
|
|
/*
|
|
|
|
Check that the right part of the subselect contains no more than one
|
|
|
|
column. E.g. in SELECT 1 IN (SELECT * ..) the right part is (SELECT * ...)
|
|
|
|
*/
|
2003-10-23 22:54:21 +02:00
|
|
|
if (select_lex->item_list.elements > 1)
|
|
|
|
{
|
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2003-10-23 22:54:21 +02:00
|
|
|
}
|
|
|
|
|
2004-10-04 16:58:06 +02:00
|
|
|
/*
|
|
|
|
If this is an ALL/ANY single-value subselect, try to rewrite it with
|
|
|
|
a MIN/MAX subselect. We can do that if a possible NULL result of the
|
|
|
|
subselect can be ignored.
|
|
|
|
E.g. SELECT * FROM t1 WHERE b > ANY (SELECT a FROM t2) can be rewritten
|
|
|
|
with SELECT * FROM t1 WHERE b > (SELECT MAX(a) FROM t2).
|
|
|
|
We can't check that this optimization is safe if it's not a top-level
|
|
|
|
item of the WHERE clause (e.g. because the WHERE clause can contain IS
|
|
|
|
NULL/IS NOT NULL functions). If so, we rewrite ALL/ANY with NOT EXISTS
|
|
|
|
later in this method.
|
|
|
|
*/
|
2004-11-18 17:10:07 +01:00
|
|
|
if ((abort_on_null || (upper_item && upper_item->top_level())) &&
|
2003-11-17 19:53:40 +01:00
|
|
|
!select_lex->master_unit()->uncacheable && !func->eqne_op())
|
2003-07-24 14:26:21 +02:00
|
|
|
{
|
2003-10-27 00:01:27 +01:00
|
|
|
if (substitution)
|
|
|
|
{
|
|
|
|
// It is second (third, ...) SELECT of UNION => All is done
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_OK);
|
2003-10-27 00:01:27 +01:00
|
|
|
}
|
|
|
|
|
2003-08-12 11:38:03 +02:00
|
|
|
Item *subs;
|
|
|
|
if (!select_lex->group_list.elements &&
|
2005-03-30 09:07:08 +02:00
|
|
|
!select_lex->having &&
|
2003-10-27 00:01:27 +01:00
|
|
|
!select_lex->with_sum_func &&
|
2006-07-10 22:34:37 +02:00
|
|
|
!(select_lex->next_select()) &&
|
|
|
|
select_lex->table_list.elements)
|
2003-07-24 14:26:21 +02:00
|
|
|
{
|
2004-11-18 17:10:07 +01:00
|
|
|
Item_sum_hybrid *item;
|
2005-10-15 23:32:37 +02:00
|
|
|
nesting_map save_allow_sum_func;
|
2003-11-03 11:28:36 +01:00
|
|
|
if (func->l_op())
|
2003-08-12 11:38:03 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
(ALL && (> || =>)) || (ANY && (< || =<))
|
|
|
|
for ALL condition is inverted
|
|
|
|
*/
|
|
|
|
item= new Item_sum_max(*select_lex->ref_pointer_array);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
(ALL && (< || =<)) || (ANY && (> || =>))
|
|
|
|
for ALL condition is inverted
|
|
|
|
*/
|
|
|
|
item= new Item_sum_min(*select_lex->ref_pointer_array);
|
|
|
|
}
|
2004-11-18 17:10:07 +01:00
|
|
|
if (upper_item)
|
|
|
|
upper_item->set_sum_test(item);
|
2003-08-12 11:38:03 +02:00
|
|
|
*select_lex->ref_pointer_array= item;
|
2004-05-07 22:06:11 +02:00
|
|
|
{
|
|
|
|
List_iterator<Item> it(select_lex->item_list);
|
|
|
|
it++;
|
|
|
|
it.replace(item);
|
|
|
|
}
|
2004-03-09 11:52:25 +01:00
|
|
|
|
2005-10-15 23:32:37 +02:00
|
|
|
save_allow_sum_func= thd->lex->allow_sum_func;
|
|
|
|
thd->lex->allow_sum_func|= 1 << thd->lex->current_select->nest_level;
|
2004-05-07 22:06:11 +02:00
|
|
|
/*
|
|
|
|
Item_sum_(max|min) can't substitute other item => we can use 0 as
|
2005-02-08 23:50:45 +01:00
|
|
|
reference, also Item_sum_(max|min) can't be fixed after creation, so
|
|
|
|
we do not check item->fixed
|
2004-05-07 22:06:11 +02:00
|
|
|
*/
|
2005-07-01 06:05:42 +02:00
|
|
|
if (item->fix_fields(thd, 0))
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2005-10-15 23:32:37 +02:00
|
|
|
thd->lex->allow_sum_func= save_allow_sum_func;
|
2004-05-07 22:06:11 +02:00
|
|
|
/* we added aggregate function => we have to change statistic */
|
|
|
|
count_field_types(&join->tmp_table_param, join->all_fields, 0);
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2003-10-07 12:31:44 +02:00
|
|
|
subs= new Item_singlerow_subselect(select_lex);
|
2003-07-24 14:26:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-11-18 17:10:07 +01:00
|
|
|
Item_maxmin_subselect *item;
|
2004-12-22 12:54:39 +01:00
|
|
|
subs= item= new Item_maxmin_subselect(thd, this, select_lex, func->l_op());
|
2004-11-18 17:10:07 +01:00
|
|
|
if (upper_item)
|
|
|
|
upper_item->set_sub_test(item);
|
2003-07-24 14:26:21 +02:00
|
|
|
}
|
2005-03-10 13:01:22 +01:00
|
|
|
/* fix fields is already called for left expression */
|
2003-11-03 11:28:36 +01:00
|
|
|
substitution= func->create(left_expr, subs);
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_OK);
|
2003-07-24 14:26:21 +02:00
|
|
|
}
|
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
if (!substitution)
|
2002-10-27 22:27:00 +01:00
|
|
|
{
|
2003-05-14 20:51:33 +02:00
|
|
|
//first call for this unit
|
|
|
|
SELECT_LEX_UNIT *unit= select_lex->master_unit();
|
2005-03-10 13:01:22 +01:00
|
|
|
substitution= optimizer;
|
2003-05-14 20:51:33 +02:00
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
SELECT_LEX *current= thd->lex->current_select, *up;
|
2003-07-03 01:30:52 +02:00
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
thd->lex->current_select= up= current->return_after_parsing();
|
2003-05-14 20:51:33 +02:00
|
|
|
//optimizer never use Item **ref => we can pass 0 as parameter
|
2005-07-01 06:05:42 +02:00
|
|
|
if (!optimizer || optimizer->fix_left(thd, 0))
|
2002-12-23 17:25:25 +01:00
|
|
|
{
|
2004-02-08 19:14:13 +01:00
|
|
|
thd->lex->current_select= current;
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2002-12-23 17:25:25 +01:00
|
|
|
}
|
2004-02-08 19:14:13 +01:00
|
|
|
thd->lex->current_select= current;
|
2002-12-23 17:25:25 +01:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
/*
|
2005-02-08 23:50:45 +01:00
|
|
|
As far as Item_ref_in_optimizer do not substitute itself on fix_fields
|
2003-05-14 20:51:33 +02:00
|
|
|
we can use same item for all selects.
|
|
|
|
*/
|
2005-07-01 06:05:42 +02:00
|
|
|
expr= new Item_direct_ref(&select_lex->context,
|
|
|
|
(Item**)optimizer->get_cache(),
|
2004-12-11 16:13:19 +01:00
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)in_left_expr_name);
|
2003-05-14 20:51:33 +02:00
|
|
|
|
2003-11-17 19:53:40 +01:00
|
|
|
unit->uncacheable|= UNCACHEABLE_DEPENDENT;
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
2002-10-31 01:11:59 +01:00
|
|
|
|
2003-11-17 19:53:40 +01:00
|
|
|
select_lex->uncacheable|= UNCACHEABLE_DEPENDENT;
|
2004-10-04 16:58:06 +02:00
|
|
|
/*
|
|
|
|
Add the left part of a subselect to a WHERE or HAVING clause of
|
2006-10-31 18:51:09 +01:00
|
|
|
the right part, e.g.
|
|
|
|
|
|
|
|
SELECT 1 IN (SELECT a FROM t1) =>
|
|
|
|
|
|
|
|
SELECT Item_in_optimizer(1, SELECT a FROM t1 WHERE a=1)
|
|
|
|
|
2004-10-04 16:58:06 +02:00
|
|
|
HAVING is used only if the right part contains a SUM function, a GROUP
|
|
|
|
BY or a HAVING clause.
|
|
|
|
*/
|
2003-05-14 20:51:33 +02:00
|
|
|
if (join->having || select_lex->with_sum_func ||
|
|
|
|
select_lex->group_list.elements)
|
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
bool tmp;
|
|
|
|
Item *item= func->create(expr,
|
2005-07-01 06:05:42 +02:00
|
|
|
new Item_ref_null_helper(&select_lex->context,
|
|
|
|
this,
|
2004-09-06 14:14:10 +02:00
|
|
|
select_lex->
|
|
|
|
ref_pointer_array,
|
|
|
|
(char *)"<ref>",
|
|
|
|
this->full_name()));
|
2006-10-31 18:51:09 +01:00
|
|
|
if (!abort_on_null && ((Item*)select_lex->item_list.head())->maybe_null)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
We can encounter "NULL IN (SELECT ...)". Wrap the added condition
|
|
|
|
within a trigger.
|
|
|
|
*/
|
|
|
|
item= new Item_func_trig_cond(item, &enable_pushed_conds);
|
|
|
|
}
|
|
|
|
|
2004-02-18 21:14:41 +01:00
|
|
|
/*
|
|
|
|
AND and comparison functions can't be changed during fix_fields()
|
|
|
|
we can assign select_lex->having here, and pass 0 as last
|
|
|
|
argument (reference) to fix_fields()
|
|
|
|
*/
|
2004-02-08 19:14:13 +01:00
|
|
|
select_lex->having= join->having= and_items(join->having, item);
|
2003-05-14 20:51:33 +02:00
|
|
|
select_lex->having_fix_field= 1;
|
2005-02-08 23:50:45 +01:00
|
|
|
/*
|
|
|
|
we do not check join->having->fixed, because Item_and (from and_items)
|
|
|
|
or comparison function (from func->create) can't be fixed after creation
|
|
|
|
*/
|
2005-07-01 06:05:42 +02:00
|
|
|
tmp= join->having->fix_fields(thd, 0);
|
2003-05-14 20:51:33 +02:00
|
|
|
select_lex->having_fix_field= 0;
|
2004-09-06 14:14:10 +02:00
|
|
|
if (tmp)
|
2005-03-31 09:39:48 +02:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
Item *item= (Item*) select_lex->item_list.head();
|
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
if (select_lex->table_list.elements)
|
2002-10-31 01:11:59 +01:00
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
bool tmp;
|
2004-02-02 01:23:53 +01:00
|
|
|
Item *having= item, *orig_item= item;
|
2006-04-28 11:23:31 +02:00
|
|
|
select_lex->item_list.empty();
|
|
|
|
select_lex->item_list.push_back(new Item_int("Not_used",
|
|
|
|
(longlong) 1, 21));
|
|
|
|
select_lex->ref_pointer_array[0]= select_lex->item_list.head();
|
2006-10-31 18:51:09 +01:00
|
|
|
|
2003-11-03 11:28:36 +01:00
|
|
|
item= func->create(expr, item);
|
2004-02-02 01:23:53 +01:00
|
|
|
if (!abort_on_null && orig_item->maybe_null)
|
2002-11-28 18:29:26 +01:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
having=
|
|
|
|
new Item_func_trig_cond(new Item_is_not_null_test(this, having),
|
|
|
|
&enable_pushed_conds);
|
2004-02-18 21:14:41 +01:00
|
|
|
/*
|
|
|
|
Item_is_not_null_test can't be changed during fix_fields()
|
|
|
|
we can assign select_lex->having here, and pass 0 as last
|
|
|
|
argument (reference) to fix_fields()
|
|
|
|
*/
|
2006-10-31 22:27:51 +01:00
|
|
|
select_lex->having= join->having= having;
|
2003-05-14 20:51:33 +02:00
|
|
|
select_lex->having_fix_field= 1;
|
2005-02-08 23:50:45 +01:00
|
|
|
/*
|
|
|
|
we do not check join->having->fixed, because Item_and (from
|
|
|
|
and_items) or comparison function (from func->create) can't be
|
|
|
|
fixed after creation
|
|
|
|
*/
|
2005-07-01 06:05:42 +02:00
|
|
|
tmp= join->having->fix_fields(thd, 0);
|
2004-09-06 14:14:10 +02:00
|
|
|
select_lex->having_fix_field= 0;
|
|
|
|
if (tmp)
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
NOTE: It is important that we add this "IS NULL" here, even when
|
|
|
|
orig_item can't be NULL. This is needed so that this predicate is
|
|
|
|
only used by ref[_or_null] analyzer (and, e.g. is not used by const
|
|
|
|
propagation).
|
|
|
|
*/
|
2003-05-14 20:51:33 +02:00
|
|
|
item= new Item_cond_or(item,
|
2004-02-02 01:23:53 +01:00
|
|
|
new Item_func_isnull(orig_item));
|
2006-10-31 18:51:09 +01:00
|
|
|
item= new Item_func_trig_cond(item, &enable_pushed_conds);
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
2003-09-08 20:58:09 +02:00
|
|
|
item->name= (char *)in_additional_cond;
|
2004-02-18 21:14:41 +01:00
|
|
|
/*
|
|
|
|
AND can't be changed during fix_fields()
|
|
|
|
we can assign select_lex->having here, and pass 0 as last
|
|
|
|
argument (reference) to fix_fields()
|
|
|
|
*/
|
2004-02-08 19:14:13 +01:00
|
|
|
select_lex->where= join->conds= and_items(join->conds, item);
|
2005-08-13 06:45:14 +02:00
|
|
|
select_lex->where->top_level_item();
|
2005-02-08 23:50:45 +01:00
|
|
|
/*
|
|
|
|
we do not check join->conds->fixed, because Item_and can't be fixed
|
|
|
|
after creation
|
|
|
|
*/
|
2005-07-01 06:05:42 +02:00
|
|
|
if (join->conds->fix_fields(thd, 0))
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
bool tmp;
|
2003-05-14 20:51:33 +02:00
|
|
|
if (select_lex->master_unit()->first_select()->next_select())
|
|
|
|
{
|
2004-02-18 21:14:41 +01:00
|
|
|
/*
|
|
|
|
comparison functions can't be changed during fix_fields()
|
|
|
|
we can assign select_lex->having here, and pass 0 as last
|
|
|
|
argument (reference) to fix_fields()
|
|
|
|
*/
|
2006-10-31 18:51:09 +01:00
|
|
|
Item *new_having=
|
|
|
|
func->create(expr,
|
2006-04-28 12:06:54 +02:00
|
|
|
new Item_ref_null_helper(&select_lex->context, this,
|
2006-04-28 11:23:31 +02:00
|
|
|
select_lex->ref_pointer_array,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<result>"));
|
2006-10-31 18:51:09 +01:00
|
|
|
new_having= new Item_func_trig_cond(new_having, &enable_pushed_conds);
|
|
|
|
select_lex->having= join->having= new_having;
|
2006-04-28 11:23:31 +02:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
select_lex->having_fix_field= 1;
|
2005-02-08 23:50:45 +01:00
|
|
|
/*
|
|
|
|
we do not check join->having->fixed, because comparison function
|
|
|
|
(from func->create) can't be fixed after creation
|
|
|
|
*/
|
2005-07-01 06:05:42 +02:00
|
|
|
tmp= join->having->fix_fields(thd, 0);
|
2004-09-06 14:14:10 +02:00
|
|
|
select_lex->having_fix_field= 0;
|
|
|
|
if (tmp)
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// it is single select without tables => possible optimization
|
2003-11-03 11:28:36 +01:00
|
|
|
item= func->create(left_expr, item);
|
2004-07-20 15:34:57 +02:00
|
|
|
// fix_field of item will be done in time of substituting
|
2003-05-14 20:51:33 +02:00
|
|
|
substitution= item;
|
|
|
|
have_to_be_excluded= 1;
|
2004-02-08 19:14:13 +01:00
|
|
|
if (thd->lex->describe)
|
2002-11-28 18:29:26 +01:00
|
|
|
{
|
2003-05-14 20:51:33 +02:00
|
|
|
char warn_buff[MYSQL_ERRMSG_SIZE];
|
|
|
|
sprintf(warn_buff, ER(ER_SELECT_REDUCED), select_lex->select_number);
|
2004-02-08 19:14:13 +01:00
|
|
|
push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
|
2003-05-14 20:51:33 +02:00
|
|
|
ER_SELECT_REDUCED, warn_buff);
|
2002-11-28 18:29:26 +01:00
|
|
|
}
|
2003-08-28 12:21:30 +02:00
|
|
|
DBUG_RETURN(RES_REDUCE);
|
2002-11-28 18:29:26 +01:00
|
|
|
}
|
2002-10-31 01:11:59 +01:00
|
|
|
}
|
2002-10-27 22:27:00 +01:00
|
|
|
}
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2003-08-28 12:21:30 +02:00
|
|
|
DBUG_RETURN(RES_OK);
|
2002-10-27 22:27:00 +01:00
|
|
|
}
|
2002-09-03 08:50:36 +02:00
|
|
|
|
2003-11-28 11:18:13 +01:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
Item_subselect::trans_res
|
2003-11-02 16:27:35 +01:00
|
|
|
Item_in_subselect::row_value_transformer(JOIN *join)
|
2002-12-19 20:15:09 +01:00
|
|
|
{
|
2004-09-06 14:14:10 +02:00
|
|
|
SELECT_LEX *select_lex= join->select_lex;
|
2005-08-13 06:45:14 +02:00
|
|
|
Item *having_item= 0;
|
|
|
|
uint cols_num= left_expr->cols();
|
|
|
|
bool is_having_used= (join->having || select_lex->with_sum_func ||
|
|
|
|
select_lex->group_list.first ||
|
|
|
|
!select_lex->table_list.elements);
|
2002-12-19 20:15:09 +01:00
|
|
|
DBUG_ENTER("Item_in_subselect::row_value_transformer");
|
2002-12-31 17:39:16 +01:00
|
|
|
|
2003-10-23 22:54:21 +02:00
|
|
|
if (select_lex->item_list.elements != left_expr->cols())
|
|
|
|
{
|
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), left_expr->cols());
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2003-10-23 22:54:21 +02:00
|
|
|
}
|
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
if (!substitution)
|
2002-12-19 20:15:09 +01:00
|
|
|
{
|
2003-05-14 20:51:33 +02:00
|
|
|
//first call for this unit
|
|
|
|
SELECT_LEX_UNIT *unit= select_lex->master_unit();
|
2005-03-10 13:01:22 +01:00
|
|
|
substitution= optimizer;
|
2003-05-14 20:51:33 +02:00
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
SELECT_LEX *current= thd->lex->current_select, *up;
|
|
|
|
thd->lex->current_select= up= current->return_after_parsing();
|
2003-05-14 20:51:33 +02:00
|
|
|
//optimizer never use Item **ref => we can pass 0 as parameter
|
2005-07-01 06:05:42 +02:00
|
|
|
if (!optimizer || optimizer->fix_left(thd, 0))
|
2002-12-25 11:03:08 +01:00
|
|
|
{
|
2004-02-08 19:14:13 +01:00
|
|
|
thd->lex->current_select= current;
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2002-12-25 11:03:08 +01:00
|
|
|
}
|
2004-02-12 02:10:26 +01:00
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
// we will refer to upper level cache array => we have to save it in PS
|
2004-02-12 02:10:26 +01:00
|
|
|
optimizer->keep_top_level_cache();
|
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
thd->lex->current_select= current;
|
2003-11-17 19:53:40 +01:00
|
|
|
unit->uncacheable|= UNCACHEABLE_DEPENDENT;
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
|
|
|
|
2003-11-17 19:53:40 +01:00
|
|
|
select_lex->uncacheable|= UNCACHEABLE_DEPENDENT;
|
2005-08-13 06:45:14 +02:00
|
|
|
if (is_having_used)
|
2004-02-08 19:14:13 +01:00
|
|
|
{
|
2005-08-13 06:45:14 +02:00
|
|
|
/*
|
|
|
|
(l1, l2, l3) IN (SELECT v1, v2, v3 ... HAVING having) =>
|
|
|
|
EXISTS (SELECT ... HAVING having and
|
|
|
|
(l1 = v1 or is null v1) and
|
|
|
|
(l2 = v2 or is null v2) and
|
|
|
|
(l3 = v3 or is null v3) and
|
|
|
|
is_not_null_test(v1) and
|
|
|
|
is_not_null_test(v2) and
|
|
|
|
is_not_null_test(v3))
|
|
|
|
where is_not_null_test used to register nulls in case if we have
|
|
|
|
not found matching to return correct NULL value
|
|
|
|
*/
|
|
|
|
Item *item_having_part2= 0;
|
|
|
|
for (uint i= 0; i < cols_num; i++)
|
2004-02-08 19:14:13 +01:00
|
|
|
{
|
2005-01-24 14:56:57 +01:00
|
|
|
DBUG_ASSERT(left_expr->fixed && select_lex->ref_pointer_array[i]->fixed);
|
|
|
|
if (select_lex->ref_pointer_array[i]->
|
|
|
|
check_cols(left_expr->el(i)->cols()))
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2005-08-13 06:45:14 +02:00
|
|
|
Item *item_eq=
|
|
|
|
new Item_func_eq(new
|
2006-08-24 18:56:28 +02:00
|
|
|
Item_ref(&select_lex->context,
|
|
|
|
(*optimizer->get_cache())->
|
|
|
|
addr(i),
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)in_left_expr_name),
|
2005-08-13 06:45:14 +02:00
|
|
|
new
|
2006-08-24 18:56:28 +02:00
|
|
|
Item_ref(&select_lex->context,
|
|
|
|
select_lex->ref_pointer_array + i,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<list ref>")
|
2005-08-13 06:45:14 +02:00
|
|
|
);
|
|
|
|
Item *item_isnull=
|
|
|
|
new Item_func_isnull(new
|
2006-08-24 18:56:28 +02:00
|
|
|
Item_ref(&select_lex->context,
|
|
|
|
select_lex->ref_pointer_array+i,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<list ref>")
|
2005-08-13 06:45:14 +02:00
|
|
|
);
|
|
|
|
having_item=
|
|
|
|
and_items(having_item,
|
|
|
|
new Item_cond_or(item_eq, item_isnull));
|
|
|
|
item_having_part2=
|
|
|
|
and_items(item_having_part2,
|
|
|
|
new
|
|
|
|
Item_is_not_null_test(this,
|
|
|
|
new
|
2006-08-24 18:56:28 +02:00
|
|
|
Item_ref(&select_lex->context,
|
|
|
|
select_lex->
|
|
|
|
ref_pointer_array + i,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<list ref>")
|
2005-08-13 06:45:14 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
item_having_part2->top_level_item();
|
2004-02-08 19:14:13 +01:00
|
|
|
}
|
2005-08-13 06:45:14 +02:00
|
|
|
having_item= and_items(having_item, item_having_part2);
|
|
|
|
having_item->top_level_item();
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
2005-08-13 06:45:14 +02:00
|
|
|
else
|
2003-05-14 20:51:33 +02:00
|
|
|
{
|
2004-02-18 21:14:41 +01:00
|
|
|
/*
|
2005-08-13 06:45:14 +02:00
|
|
|
(l1, l2, l3) IN (SELECT v1, v2, v3 ... WHERE where) =>
|
|
|
|
EXISTS (SELECT ... WHERE where and
|
|
|
|
(l1 = v1 or is null v1) and
|
|
|
|
(l2 = v2 or is null v2) and
|
|
|
|
(l3 = v3 or is null v3)
|
|
|
|
HAVING is_not_null_test(v1) and
|
|
|
|
is_not_null_test(v2) and
|
|
|
|
is_not_null_test(v3))
|
|
|
|
where is_not_null_test register NULLs values but reject rows
|
|
|
|
|
|
|
|
in case when we do not need correct NULL, we have simplier construction:
|
|
|
|
EXISTS (SELECT ... WHERE where and
|
|
|
|
(l1 = v1) and
|
|
|
|
(l2 = v2) and
|
|
|
|
(l3 = v3)
|
2004-02-18 21:14:41 +01:00
|
|
|
*/
|
2005-08-13 06:45:14 +02:00
|
|
|
Item *where_item= 0;
|
|
|
|
for (uint i= 0; i < cols_num; i++)
|
|
|
|
{
|
|
|
|
Item *item, *item_isnull;
|
|
|
|
DBUG_ASSERT(left_expr->fixed && select_lex->ref_pointer_array[i]->fixed);
|
|
|
|
if (select_lex->ref_pointer_array[i]->
|
|
|
|
check_cols(left_expr->el(i)->cols()))
|
|
|
|
DBUG_RETURN(RES_ERROR);
|
|
|
|
item=
|
|
|
|
new Item_func_eq(new
|
2005-08-13 10:15:17 +02:00
|
|
|
Item_direct_ref(&select_lex->context,
|
|
|
|
(*optimizer->get_cache())->
|
2005-08-13 06:45:14 +02:00
|
|
|
addr(i),
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)in_left_expr_name),
|
|
|
|
new
|
2005-08-13 10:15:17 +02:00
|
|
|
Item_direct_ref(&select_lex->context,
|
|
|
|
select_lex->
|
|
|
|
ref_pointer_array+i,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<list ref>")
|
2005-08-13 06:45:14 +02:00
|
|
|
);
|
|
|
|
if (!abort_on_null)
|
|
|
|
{
|
|
|
|
having_item=
|
|
|
|
and_items(having_item,
|
|
|
|
new
|
|
|
|
Item_is_not_null_test(this,
|
|
|
|
new
|
2006-08-24 18:56:28 +02:00
|
|
|
Item_ref(&select_lex->context,
|
|
|
|
select_lex->
|
|
|
|
ref_pointer_array + i,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<list ref>")
|
2005-08-13 06:45:14 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
item_isnull= new
|
|
|
|
Item_func_isnull(new
|
2005-08-13 10:15:17 +02:00
|
|
|
Item_direct_ref(&select_lex->context,
|
|
|
|
select_lex->
|
|
|
|
ref_pointer_array+i,
|
|
|
|
(char *)"<no matter>",
|
|
|
|
(char *)"<list ref>")
|
2005-08-13 06:45:14 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
item= new Item_cond_or(item, item_isnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
where_item= and_items(where_item, item);
|
|
|
|
}
|
2006-10-31 18:51:09 +01:00
|
|
|
if (where_item)
|
|
|
|
where_item= new Item_func_trig_cond(where_item, &enable_pushed_conds);
|
2005-02-08 23:50:45 +01:00
|
|
|
/*
|
2004-02-18 21:14:41 +01:00
|
|
|
AND can't be changed during fix_fields()
|
2005-08-13 06:45:14 +02:00
|
|
|
we can assign select_lex->where here, and pass 0 as last
|
2004-02-18 21:14:41 +01:00
|
|
|
argument (reference) to fix_fields()
|
2005-02-08 23:50:45 +01:00
|
|
|
*/
|
2005-08-13 06:45:14 +02:00
|
|
|
select_lex->where= join->conds= and_items(join->conds, where_item);
|
|
|
|
select_lex->where->top_level_item();
|
2005-08-13 07:19:34 +02:00
|
|
|
if (join->conds->fix_fields(thd, 0))
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2002-12-19 20:15:09 +01:00
|
|
|
}
|
2005-08-13 06:45:14 +02:00
|
|
|
if (having_item)
|
2003-05-14 20:51:33 +02:00
|
|
|
{
|
2005-08-13 06:45:14 +02:00
|
|
|
bool res;
|
2006-10-31 18:51:09 +01:00
|
|
|
having_item= new Item_func_trig_cond(having_item, &enable_pushed_conds);
|
|
|
|
|
2005-08-13 06:45:14 +02:00
|
|
|
select_lex->having= join->having= and_items(join->having, having_item);
|
|
|
|
select_lex->having->top_level_item();
|
2004-02-18 21:14:41 +01:00
|
|
|
/*
|
|
|
|
AND can't be changed during fix_fields()
|
|
|
|
we can assign select_lex->having here, and pass 0 as last
|
|
|
|
argument (reference) to fix_fields()
|
|
|
|
*/
|
2005-08-13 06:45:14 +02:00
|
|
|
select_lex->having_fix_field= 1;
|
2005-08-13 07:19:34 +02:00
|
|
|
res= join->having->fix_fields(thd, 0);
|
2005-08-13 06:45:14 +02:00
|
|
|
select_lex->having_fix_field= 0;
|
|
|
|
if (res)
|
|
|
|
{
|
2005-03-10 13:01:22 +01:00
|
|
|
DBUG_RETURN(RES_ERROR);
|
2005-08-13 06:45:14 +02:00
|
|
|
}
|
2003-05-14 20:51:33 +02:00
|
|
|
}
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2003-08-28 12:21:30 +02:00
|
|
|
DBUG_RETURN(RES_OK);
|
2002-12-19 20:15:09 +01:00
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
Item_subselect::trans_res
|
2003-07-02 00:45:22 +02:00
|
|
|
Item_in_subselect::select_transformer(JOIN *join)
|
2002-11-07 22:45:19 +01:00
|
|
|
{
|
2005-03-10 13:01:22 +01:00
|
|
|
return select_in_like_transformer(join, &eq_creator);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Prepare IN/ALL/ANY/SOME subquery transformation and call appropriate
|
|
|
|
transformation function
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
Item_in_subselect::select_in_like_transformer()
|
|
|
|
join JOIN object of transforming subquery
|
|
|
|
func creator of condition function of subquery
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
To decide which transformation procedure (scalar or row) applicable here
|
|
|
|
we have to call fix_fields() for left expression to be able to call
|
|
|
|
cols() method on it. Also this method make arena management for
|
|
|
|
underlying transformation methods.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
RES_OK OK
|
|
|
|
RES_REDUCE OK, and current subquery was reduced during transformation
|
|
|
|
RES_ERROR Error
|
|
|
|
*/
|
|
|
|
|
|
|
|
Item_subselect::trans_res
|
|
|
|
Item_in_subselect::select_in_like_transformer(JOIN *join, Comp_creator *func)
|
|
|
|
{
|
2005-06-15 19:58:35 +02:00
|
|
|
Query_arena *arena, backup;
|
2005-03-10 13:01:22 +01:00
|
|
|
SELECT_LEX *current= thd->lex->current_select, *up;
|
|
|
|
const char *save_where= thd->where;
|
|
|
|
Item_subselect::trans_res res= RES_ERROR;
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
DBUG_ENTER("Item_in_subselect::select_in_like_transformer");
|
2005-03-30 09:07:08 +02:00
|
|
|
|
2005-03-10 13:01:22 +01:00
|
|
|
if (changed)
|
|
|
|
{
|
|
|
|
DBUG_RETURN(RES_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
thd->where= "IN/ALL/ANY subquery";
|
|
|
|
|
|
|
|
/*
|
|
|
|
In some optimisation cases we will not need this Item_in_optimizer
|
|
|
|
object, but we can't know it here, but here we need address correct
|
|
|
|
reference on left expresion.
|
|
|
|
*/
|
|
|
|
if (!optimizer)
|
|
|
|
{
|
2005-09-02 15:21:19 +02:00
|
|
|
arena= thd->activate_stmt_arena_if_needed(&backup);
|
2005-03-10 13:01:22 +01:00
|
|
|
result= (!(optimizer= new Item_in_optimizer(left_expr, this)));
|
|
|
|
if (arena)
|
2005-09-02 15:21:19 +02:00
|
|
|
thd->restore_active_arena(arena, &backup);
|
2005-03-10 13:01:22 +01:00
|
|
|
if (result)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
thd->lex->current_select= up= current->return_after_parsing();
|
|
|
|
result= (!left_expr->fixed &&
|
2005-07-01 06:05:42 +02:00
|
|
|
left_expr->fix_fields(thd, optimizer->arguments()));
|
2005-03-10 13:01:22 +01:00
|
|
|
/* fix_fields can change reference to left_expr, we need reassign it */
|
|
|
|
left_expr= optimizer->arguments()[0];
|
|
|
|
|
|
|
|
thd->lex->current_select= current;
|
|
|
|
if (result)
|
|
|
|
goto err;
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
transformed= 1;
|
2005-09-02 15:21:19 +02:00
|
|
|
arena= thd->activate_stmt_arena_if_needed(&backup);
|
2005-03-10 13:01:22 +01:00
|
|
|
/*
|
|
|
|
Both transformers call fix_fields() only for Items created inside them,
|
|
|
|
and all that items do not make permanent changes in current item arena
|
|
|
|
which allow to us call them with changed arena (if we do not know nature
|
|
|
|
of Item, we have to call fix_fields() for it only with original arena to
|
|
|
|
avoid memory leack)
|
|
|
|
*/
|
2002-12-19 20:15:09 +01:00
|
|
|
if (left_expr->cols() == 1)
|
2005-03-10 13:01:22 +01:00
|
|
|
res= single_value_transformer(join, func);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* we do not support row operation for ALL/ANY/SOME */
|
|
|
|
if (func != &eq_creator)
|
|
|
|
{
|
2005-03-30 09:07:08 +02:00
|
|
|
if (arena)
|
2005-09-02 15:21:19 +02:00
|
|
|
thd->restore_active_arena(arena, &backup);
|
2005-03-10 13:01:22 +01:00
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
|
|
|
|
DBUG_RETURN(RES_ERROR);
|
|
|
|
}
|
|
|
|
res= row_value_transformer(join);
|
|
|
|
}
|
|
|
|
if (arena)
|
2005-09-02 15:21:19 +02:00
|
|
|
thd->restore_active_arena(arena, &backup);
|
2005-03-10 13:01:22 +01:00
|
|
|
err:
|
|
|
|
thd->where= save_where;
|
|
|
|
DBUG_RETURN(res);
|
2002-11-07 22:45:19 +01:00
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
void Item_in_subselect::print(String *str)
|
|
|
|
{
|
|
|
|
if (transformed)
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN("<exists>"));
|
2003-10-16 14:54:47 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
left_expr->print(str);
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" in "));
|
2003-10-16 14:54:47 +02:00
|
|
|
}
|
|
|
|
Item_subselect::print(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-11 14:30:54 +02:00
|
|
|
bool Item_in_subselect::fix_fields(THD *thd, Item **ref)
|
|
|
|
{
|
|
|
|
bool result = 0;
|
|
|
|
|
|
|
|
if(thd->lex->view_prepare_mode && left_expr && !left_expr->fixed)
|
|
|
|
result = left_expr->fix_fields(thd, &left_expr);
|
|
|
|
|
|
|
|
return result || Item_subselect::fix_fields(thd, ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
Item_subselect::trans_res
|
2003-07-02 00:45:22 +02:00
|
|
|
Item_allany_subselect::select_transformer(JOIN *join)
|
2002-11-07 22:45:19 +01:00
|
|
|
{
|
2003-10-16 14:54:47 +02:00
|
|
|
transformed= 1;
|
2004-11-18 17:10:07 +01:00
|
|
|
if (upper_item)
|
|
|
|
upper_item->show= 1;
|
2005-03-10 13:01:22 +01:00
|
|
|
return select_in_like_transformer(join, func);
|
2002-11-07 22:45:19 +01:00
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
|
|
|
void Item_allany_subselect::print(String *str)
|
|
|
|
{
|
|
|
|
if (transformed)
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN("<exists>"));
|
2003-10-16 14:54:47 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
left_expr->print(str);
|
|
|
|
str->append(' ');
|
2003-11-03 11:28:36 +01:00
|
|
|
str->append(func->symbol(all));
|
|
|
|
str->append(all ? " all " : " any ", 5);
|
2003-10-16 14:54:47 +02:00
|
|
|
}
|
|
|
|
Item_subselect::print(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-09 22:23:56 +02:00
|
|
|
void subselect_engine::set_thd(THD *thd_arg)
|
|
|
|
{
|
|
|
|
thd= thd_arg;
|
|
|
|
if (result)
|
|
|
|
result->set_thd(thd_arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-24 14:26:21 +02:00
|
|
|
subselect_single_select_engine::
|
2003-10-02 21:19:41 +02:00
|
|
|
subselect_single_select_engine(st_select_lex *select,
|
|
|
|
select_subselect *result,
|
|
|
|
Item_subselect *item)
|
|
|
|
:subselect_engine(item, result),
|
2005-05-30 18:54:37 +02:00
|
|
|
prepared(0), optimized(0), executed(0),
|
|
|
|
select_lex(select), join(0)
|
2002-09-03 08:50:36 +02:00
|
|
|
{
|
2005-05-30 18:54:37 +02:00
|
|
|
select_lex->master_unit()->item= item;
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2003-12-30 11:08:19 +01:00
|
|
|
void subselect_single_select_engine::cleanup()
|
|
|
|
{
|
2004-02-08 19:14:13 +01:00
|
|
|
DBUG_ENTER("subselect_single_select_engine::cleanup");
|
|
|
|
prepared= optimized= executed= 0;
|
2004-02-12 02:10:26 +01:00
|
|
|
join= 0;
|
2005-01-26 14:27:45 +01:00
|
|
|
result->cleanup();
|
2004-02-08 19:14:13 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2003-12-30 11:08:19 +01:00
|
|
|
}
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
|
|
|
|
void subselect_union_engine::cleanup()
|
|
|
|
{
|
|
|
|
DBUG_ENTER("subselect_union_engine::cleanup");
|
|
|
|
unit->reinit_exec_mechanism();
|
2005-01-26 14:27:45 +01:00
|
|
|
result->cleanup();
|
2004-02-08 19:14:13 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2003-12-30 11:08:19 +01:00
|
|
|
}
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
|
2005-10-13 09:53:00 +02:00
|
|
|
bool subselect_union_engine::is_executed() const
|
|
|
|
{
|
|
|
|
return unit->executed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
Check if last execution of the subquery engine produced any rows
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
subselect_union_engine::no_rows()
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Check if last execution of the subquery engine produced any rows. The
|
|
|
|
return value is undefined if last execution ended in an error.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
TRUE - Last subselect execution has produced no rows
|
|
|
|
FALSE - Otherwise
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool subselect_union_engine::no_rows()
|
|
|
|
{
|
|
|
|
/* Check if we got any rows when reading UNION result from temp. table: */
|
|
|
|
return test(!unit->fake_select_lex->join->send_records);
|
|
|
|
}
|
|
|
|
|
2004-02-08 19:14:13 +01:00
|
|
|
void subselect_uniquesubquery_engine::cleanup()
|
|
|
|
{
|
|
|
|
DBUG_ENTER("subselect_uniquesubquery_engine::cleanup");
|
2005-01-26 14:27:45 +01:00
|
|
|
/*
|
|
|
|
subselect_uniquesubquery_engine have not 'result' assigbed, so we do not
|
|
|
|
cleanup() it
|
|
|
|
*/
|
2004-02-08 19:14:13 +01:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-02 21:19:41 +02:00
|
|
|
subselect_union_engine::subselect_union_engine(st_select_lex_unit *u,
|
2003-11-28 11:18:13 +01:00
|
|
|
select_subselect *result_arg,
|
|
|
|
Item_subselect *item_arg)
|
|
|
|
:subselect_engine(item_arg, result_arg)
|
2002-09-03 08:50:36 +02:00
|
|
|
{
|
|
|
|
unit= u;
|
2003-11-28 11:18:13 +01:00
|
|
|
if (!result_arg) //out of memory
|
2003-10-02 21:19:41 +02:00
|
|
|
current_thd->fatal_error();
|
2003-11-28 11:18:13 +01:00
|
|
|
unit->item= item_arg;
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2003-11-28 11:18:13 +01:00
|
|
|
|
2002-09-03 08:50:36 +02:00
|
|
|
int subselect_single_select_engine::prepare()
|
|
|
|
{
|
2002-10-13 13:25:16 +02:00
|
|
|
if (prepared)
|
|
|
|
return 0;
|
2003-12-10 21:46:14 +01:00
|
|
|
join= new JOIN(thd, select_lex->item_list,
|
|
|
|
select_lex->options | SELECT_NO_UNLOCK, result);
|
2003-10-02 21:19:41 +02:00
|
|
|
if (!join || !result)
|
|
|
|
{
|
2003-11-28 11:18:13 +01:00
|
|
|
thd->fatal_error(); //out of memory
|
2003-10-02 21:19:41 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2002-10-13 13:25:16 +02:00
|
|
|
prepared= 1;
|
2003-12-19 18:52:13 +01:00
|
|
|
SELECT_LEX *save_select= thd->lex->current_select;
|
|
|
|
thd->lex->current_select= select_lex;
|
2003-01-25 12:19:46 +01:00
|
|
|
if (join->prepare(&select_lex->ref_pointer_array,
|
|
|
|
(TABLE_LIST*) select_lex->table_list.first,
|
|
|
|
select_lex->with_wild,
|
2002-12-28 00:01:05 +01:00
|
|
|
select_lex->where,
|
2003-01-25 12:19:46 +01:00
|
|
|
select_lex->order_list.elements +
|
|
|
|
select_lex->group_list.elements,
|
2002-12-28 00:01:05 +01:00
|
|
|
(ORDER*) select_lex->order_list.first,
|
|
|
|
(ORDER*) select_lex->group_list.first,
|
|
|
|
select_lex->having,
|
2004-07-04 07:46:28 +02:00
|
|
|
(ORDER*) 0, select_lex,
|
2003-11-23 01:01:15 +01:00
|
|
|
select_lex->master_unit()))
|
2002-09-03 08:50:36 +02:00
|
|
|
return 1;
|
2003-12-19 18:52:13 +01:00
|
|
|
thd->lex->current_select= save_select;
|
2002-09-03 08:50:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int subselect_union_engine::prepare()
|
|
|
|
{
|
2005-09-22 00:11:21 +02:00
|
|
|
return unit->prepare(thd, result, SELECT_NO_UNLOCK);
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2003-09-14 08:40:57 +02:00
|
|
|
int subselect_uniquesubquery_engine::prepare()
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
|
|
|
//this never should be called
|
|
|
|
DBUG_ASSERT(0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Check if last execution of the subquery engine produced any rows
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
subselect_single_select_engine::no_rows()
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Check if last execution of the subquery engine produced any rows. The
|
|
|
|
return value is undefined if last execution ended in an error.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
TRUE - Last subselect execution has produced no rows
|
|
|
|
FALSE - Otherwise
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool subselect_single_select_engine::no_rows()
|
|
|
|
{
|
|
|
|
return !item->assigned();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-07 17:16:17 +01:00
|
|
|
/*
|
|
|
|
makes storage for the output values for the subquery and calcuates
|
|
|
|
their data and column types and their nullability.
|
|
|
|
*/
|
|
|
|
void subselect_engine::set_row(List<Item> &item_list, Item_cache **row)
|
2002-09-28 17:34:56 +02:00
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
Item *sel_item;
|
2003-11-23 01:01:15 +01:00
|
|
|
List_iterator_fast<Item> li(item_list);
|
2006-11-07 17:16:17 +01:00
|
|
|
res_type= STRING_RESULT;
|
|
|
|
res_field_type= FIELD_TYPE_VAR_STRING;
|
2002-12-19 06:38:33 +01:00
|
|
|
for (uint i= 0; (sel_item= li++); i++)
|
|
|
|
{
|
|
|
|
item->max_length= sel_item->max_length;
|
|
|
|
res_type= sel_item->result_type();
|
2006-11-07 17:16:17 +01:00
|
|
|
res_field_type= sel_item->field_type();
|
2002-12-19 06:38:33 +01:00
|
|
|
item->decimals= sel_item->decimals;
|
2006-06-09 19:35:54 +02:00
|
|
|
item->unsigned_flag= sel_item->unsigned_flag;
|
2006-11-18 18:49:59 +01:00
|
|
|
maybe_null= sel_item->maybe_null;
|
2003-12-25 15:50:22 +01:00
|
|
|
if (!(row[i]= Item_cache::get_cache(res_type)))
|
2006-11-07 17:16:17 +01:00
|
|
|
return;
|
2003-12-25 15:50:22 +01:00
|
|
|
row[i]->setup(sel_item);
|
2002-12-19 06:38:33 +01:00
|
|
|
}
|
2003-11-23 01:01:15 +01:00
|
|
|
if (item_list.elements > 1)
|
2002-12-19 06:38:33 +01:00
|
|
|
res_type= ROW_RESULT;
|
2002-09-28 17:34:56 +02:00
|
|
|
}
|
|
|
|
|
2002-12-19 06:38:33 +01:00
|
|
|
void subselect_single_select_engine::fix_length_and_dec(Item_cache **row)
|
2002-09-28 17:34:56 +02:00
|
|
|
{
|
2002-12-19 06:38:33 +01:00
|
|
|
DBUG_ASSERT(row || select_lex->item_list.elements==1);
|
2006-11-07 17:16:17 +01:00
|
|
|
set_row(select_lex->item_list, row);
|
2003-07-30 11:15:25 +02:00
|
|
|
item->collation.set(row[0]->collation);
|
2002-12-27 20:19:25 +01:00
|
|
|
if (cols() != 1)
|
|
|
|
maybe_null= 0;
|
2002-12-19 06:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void subselect_union_engine::fix_length_and_dec(Item_cache **row)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(row || unit->first_select()->item_list.elements==1);
|
|
|
|
|
|
|
|
if (unit->first_select()->item_list.elements == 1)
|
2003-12-25 15:50:22 +01:00
|
|
|
{
|
2006-11-07 17:16:17 +01:00
|
|
|
set_row(unit->types, row);
|
2003-12-25 15:50:22 +01:00
|
|
|
item->collation.set(row[0]->collation);
|
|
|
|
}
|
2002-12-19 06:38:33 +01:00
|
|
|
else
|
|
|
|
{
|
2006-11-07 17:16:17 +01:00
|
|
|
bool maybe_null_saved= maybe_null;
|
|
|
|
set_row(unit->types, row);
|
|
|
|
maybe_null= maybe_null_saved;
|
2002-09-28 17:34:56 +02:00
|
|
|
}
|
|
|
|
}
|
2002-09-03 08:50:36 +02:00
|
|
|
|
2003-09-14 08:40:57 +02:00
|
|
|
void subselect_uniquesubquery_engine::fix_length_and_dec(Item_cache **row)
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
|
|
|
//this never should be called
|
|
|
|
DBUG_ASSERT(0);
|
|
|
|
}
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
int init_read_record_seq(JOIN_TAB *tab);
|
|
|
|
int join_read_always_key_or_null(JOIN_TAB *tab);
|
|
|
|
int join_read_next_same_or_null(READ_RECORD *info);
|
|
|
|
|
|
|
|
int subselect_single_select_engine::exec(bool full_scan)
|
2002-09-03 08:50:36 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("subselect_single_select_engine::exec");
|
2004-09-10 01:22:44 +02:00
|
|
|
char const *save_where= thd->where;
|
|
|
|
SELECT_LEX *save_select= thd->lex->current_select;
|
|
|
|
thd->lex->current_select= select_lex;
|
2002-09-03 08:50:36 +02:00
|
|
|
if (!optimized)
|
|
|
|
{
|
2005-05-30 18:54:37 +02:00
|
|
|
SELECT_LEX_UNIT *unit= select_lex->master_unit();
|
|
|
|
|
|
|
|
optimized= 1;
|
|
|
|
unit->set_limit(unit->global_parameters);
|
2002-09-03 08:50:36 +02:00
|
|
|
if (join->optimize())
|
|
|
|
{
|
2004-09-10 01:22:44 +02:00
|
|
|
thd->where= save_where;
|
2002-09-03 08:50:36 +02:00
|
|
|
executed= 1;
|
2004-09-10 01:22:44 +02:00
|
|
|
thd->lex->current_select= save_select;
|
2004-06-23 12:29:05 +02:00
|
|
|
DBUG_RETURN(join->error ? join->error : 1);
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
2003-07-07 17:40:19 +02:00
|
|
|
if (item->engine_changed)
|
|
|
|
{
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
2003-11-17 19:53:40 +01:00
|
|
|
if (select_lex->uncacheable && executed)
|
2002-09-03 08:50:36 +02:00
|
|
|
{
|
|
|
|
if (join->reinit())
|
2002-11-24 20:10:52 +01:00
|
|
|
{
|
2004-09-10 01:22:44 +02:00
|
|
|
thd->where= save_where;
|
|
|
|
thd->lex->current_select= save_select;
|
2002-09-03 08:50:36 +02:00
|
|
|
DBUG_RETURN(1);
|
2002-11-24 20:10:52 +01:00
|
|
|
}
|
2002-12-06 20:55:53 +01:00
|
|
|
item->reset();
|
2002-09-03 08:50:36 +02:00
|
|
|
item->assigned((executed= 0));
|
|
|
|
}
|
|
|
|
if (!executed)
|
|
|
|
{
|
2004-11-18 17:10:07 +01:00
|
|
|
item->reset_value_registration();
|
2006-10-31 18:51:09 +01:00
|
|
|
if (full_scan)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
We should not apply optimizations based on the condition that was
|
|
|
|
pushed down into the subquery. Those optimizations are ref[_or_null]
|
|
|
|
acceses. Change them to be full table scans.
|
|
|
|
*/
|
|
|
|
for (uint i=join->const_tables ; i < join->tables ; i++)
|
|
|
|
{
|
|
|
|
JOIN_TAB *tab=join->join_tab+i;
|
|
|
|
if (tab->keyuse && tab->keyuse->outer_ref)
|
|
|
|
{
|
|
|
|
tab->read_first_record= init_read_record_seq;
|
|
|
|
tab->read_record.record= tab->table->record[0];
|
|
|
|
tab->read_record.thd= join->thd;
|
|
|
|
tab->read_record.ref_length= tab->table->file->ref_length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-03 08:50:36 +02:00
|
|
|
join->exec();
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
if (full_scan)
|
|
|
|
{
|
|
|
|
/* Enable the optimizations back */
|
|
|
|
for (uint i=join->const_tables ; i < join->tables ; i++)
|
|
|
|
{
|
|
|
|
JOIN_TAB *tab=join->join_tab+i;
|
|
|
|
if (tab->keyuse && tab->keyuse->outer_ref)
|
|
|
|
{
|
|
|
|
tab->read_record.record= 0;
|
|
|
|
tab->read_record.ref_length= 0;
|
|
|
|
tab->read_first_record= join_read_always_key_or_null;
|
|
|
|
tab->read_record.read_record= join_read_next_same_or_null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-09-03 08:50:36 +02:00
|
|
|
executed= 1;
|
2004-09-10 01:22:44 +02:00
|
|
|
thd->where= save_where;
|
|
|
|
thd->lex->current_select= save_select;
|
2003-01-30 21:15:44 +01:00
|
|
|
DBUG_RETURN(join->error||thd->is_fatal_error);
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
2004-09-10 01:22:44 +02:00
|
|
|
thd->where= save_where;
|
|
|
|
thd->lex->current_select= save_select;
|
2002-09-03 08:50:36 +02:00
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
int subselect_union_engine::exec(bool full_scan)
|
2002-09-03 08:50:36 +02:00
|
|
|
{
|
2004-09-10 01:22:44 +02:00
|
|
|
char const *save_where= thd->where;
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
Ignore the full_scan parameter: the pushed down predicates are only used
|
|
|
|
for filtering, and the caller has disabled them if necessary.
|
|
|
|
*/
|
2002-11-24 20:10:52 +01:00
|
|
|
int res= unit->exec();
|
2004-09-10 01:22:44 +02:00
|
|
|
thd->where= save_where;
|
2002-11-24 20:10:52 +01:00
|
|
|
return res;
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
Search for at least on row satisfying select condition
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
subselect_uniquesubquery_engine::scan_table()
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Scan the table using sequential access until we find at least one row
|
|
|
|
satisfying select condition.
|
|
|
|
|
|
|
|
The result of this function (info about whether a row was found) is
|
|
|
|
stored in this->empty_result_set.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
FALSE - OK
|
|
|
|
TRUE - Error
|
|
|
|
*/
|
|
|
|
|
|
|
|
int subselect_uniquesubquery_engine::scan_table()
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
TABLE *table= tab->table;
|
2006-10-31 18:51:09 +01:00
|
|
|
DBUG_ENTER("subselect_uniquesubquery_engine::scan_table");
|
|
|
|
empty_result_set= TRUE;
|
|
|
|
|
|
|
|
if (table->file->inited)
|
|
|
|
table->file->ha_index_end();
|
|
|
|
|
|
|
|
table->file->ha_rnd_init(1);
|
|
|
|
table->file->extra_opt(HA_EXTRA_CACHE,
|
|
|
|
current_thd->variables.read_buff_size);
|
|
|
|
table->null_row= 0;
|
|
|
|
for (;;)
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
error=table->file->rnd_next(table->record[0]);
|
|
|
|
if (error && error != HA_ERR_END_OF_FILE)
|
2004-08-12 16:31:23 +02:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
error= report_error(table, error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* No more rows */
|
|
|
|
if (table->status)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!cond || cond->val_int())
|
|
|
|
{
|
|
|
|
empty_result_set= FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table->file->ha_rnd_end();
|
|
|
|
DBUG_RETURN(error != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copy ref key and check for null parts in it
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
subselect_uniquesubquery_engine::copy_ref_key()
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Copy ref key and check for null parts in it.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
FALSE - ok, index lookup key without keys copied.
|
|
|
|
TRUE - an error occured while copying the key
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool subselect_uniquesubquery_engine::copy_ref_key()
|
|
|
|
{
|
|
|
|
DBUG_ENTER("subselect_uniquesubquery_engine::copy_ref_key");
|
|
|
|
|
|
|
|
for (store_key **copy= tab->ref.key_copy ; *copy ; copy++)
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
tab->ref.key_err= (*copy)->copy();
|
|
|
|
|
|
|
|
/*
|
|
|
|
When there is a NULL part in the key we don't need to make index
|
|
|
|
lookup for such key thus we don't need to copy whole key.
|
|
|
|
If we later should do a sequential scan return OK. Fail otherwise.
|
|
|
|
|
|
|
|
See also the comment for the subselect_uniquesubquery_engine::exec()
|
|
|
|
function.
|
|
|
|
*/
|
|
|
|
null_keypart= (*copy)->null_key;
|
|
|
|
bool top_level= ((Item_in_subselect *) item)->is_top_level_item();
|
|
|
|
if (null_keypart && !top_level)
|
|
|
|
break;
|
|
|
|
if ((tab->ref.key_err) & 1 || (null_keypart && top_level))
|
2004-08-12 16:31:23 +02:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
tab->table->status= STATUS_NOT_FOUND;
|
2004-08-12 16:31:23 +02:00
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
2003-07-07 17:40:19 +02:00
|
|
|
}
|
2006-10-31 18:51:09 +01:00
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
2004-08-12 16:31:23 +02:00
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
Execute subselect
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
subselect_uniquesubquery_engine::exec()
|
2004-08-12 16:31:23 +02:00
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
DESCRIPTION
|
|
|
|
Find rows corresponding to the ref key using index access.
|
|
|
|
If some part of the lookup key is NULL, then we're evaluating
|
|
|
|
NULL IN (SELECT ... )
|
|
|
|
This is a special case, we don't need to search for NULL in the table,
|
|
|
|
instead, the result value is
|
|
|
|
- NULL if select produces empty row set
|
|
|
|
- FALSE otherwise.
|
|
|
|
|
|
|
|
In some cases (IN subselect is a top level item, i.e. abort_on_null==TRUE)
|
|
|
|
the caller doesn't distinguish between NULL and FALSE result and we just
|
|
|
|
return FALSE.
|
|
|
|
Otherwise we make a full table scan to see if there is at least one matching row.
|
|
|
|
|
|
|
|
NOTE
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
FALSE - ok
|
|
|
|
TRUE - an error occured while scanning
|
|
|
|
*/
|
2004-08-12 16:31:23 +02:00
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
int subselect_uniquesubquery_engine::exec(bool full_scan)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("subselect_uniquesubquery_engine::exec");
|
|
|
|
int error;
|
|
|
|
TABLE *table= tab->table;
|
|
|
|
|
|
|
|
/* TODO: change to use of 'full_scan' here? */
|
|
|
|
if (copy_ref_key())
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
|
|
|
|
if (null_keypart)
|
|
|
|
DBUG_RETURN(scan_table());
|
|
|
|
|
2004-08-12 16:31:23 +02:00
|
|
|
if (!table->file->inited)
|
2005-07-18 13:31:02 +02:00
|
|
|
table->file->ha_index_init(tab->ref.key, 0);
|
2004-08-12 16:31:23 +02:00
|
|
|
error= table->file->index_read(table->record[0],
|
|
|
|
tab->ref.key_buff,
|
|
|
|
tab->ref.key_length,HA_READ_KEY_EXACT);
|
2004-10-07 13:13:42 +02:00
|
|
|
if (error &&
|
|
|
|
error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE)
|
2004-08-12 16:31:23 +02:00
|
|
|
error= report_error(table, error);
|
2003-07-07 17:40:19 +02:00
|
|
|
else
|
|
|
|
{
|
2004-08-12 16:31:23 +02:00
|
|
|
error= 0;
|
|
|
|
table->null_row= 0;
|
|
|
|
((Item_in_subselect *) item)->value= (!table->status &&
|
|
|
|
(!cond || cond->val_int()) ? 1 :
|
|
|
|
0);
|
2003-07-07 17:40:19 +02:00
|
|
|
}
|
2004-08-12 16:31:23 +02:00
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
DBUG_RETURN(error != 0);
|
2003-07-07 23:08:00 +02:00
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
|
|
|
subselect_uniquesubquery_engine::~subselect_uniquesubquery_engine()
|
2003-07-07 23:08:00 +02:00
|
|
|
{
|
2003-09-29 11:39:38 +02:00
|
|
|
/* Tell handler we don't need the index anymore */
|
2004-06-23 12:29:05 +02:00
|
|
|
tab->table->file->ha_index_end();
|
2003-07-07 23:08:00 +02:00
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
/*
|
|
|
|
Index-lookup subselect 'engine' - run the subquery
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
subselect_uniquesubquery_engine:exec()
|
|
|
|
full_scan
|
|
|
|
|
|
|
|
DESCRIPTION
|
2006-10-31 19:30:40 +01:00
|
|
|
The engine is used to resolve subqueries in form
|
|
|
|
|
|
|
|
oe IN (SELECT key FROM tbl WHERE subq_where)
|
|
|
|
|
|
|
|
The value of the predicate is calculated as follows:
|
|
|
|
1. If oe IS NULL, this is a special case, do a full table scan on
|
|
|
|
table tbl and search for row that satisfies subq_where. If such
|
|
|
|
row is found, return NULL, otherwise return FALSE.
|
|
|
|
2. Make an index lookup via key=oe, search for a row that satisfies
|
|
|
|
subq_where. If found, return TRUE.
|
|
|
|
3. If check_null==TRUE, make another lookup via key=NULL, search for a
|
|
|
|
row that satisfies subq_where. If found, return NULL, otherwise
|
|
|
|
return FALSE.
|
|
|
|
|
|
|
|
TODO
|
|
|
|
The step #1 can be optimized further when the index has several key
|
|
|
|
parts. Consider a subquery:
|
|
|
|
|
|
|
|
(oe1, oe2) IN (SELECT keypart1, keypart2 FROM tbl WHERE subq_where)
|
|
|
|
|
|
|
|
and suppose we need to evaluate it for {oe1, oe2}=={const1, NULL}.
|
|
|
|
Current code will do a full table scan and obtain correct result. There
|
|
|
|
is a better option: instead of evaluating
|
|
|
|
|
|
|
|
SELECT keypart1, keypart2 FROM tbl WHERE subq_where (1)
|
|
|
|
|
|
|
|
and checking if it has produced any matching rows, evaluate
|
|
|
|
|
|
|
|
SELECT keypart2 FROM tbl WHERE subq_where AND keypart1=const1 (2)
|
|
|
|
|
|
|
|
If this query produces a row, the result is NULL (as we're evaluating
|
|
|
|
"(const1, NULL) IN { (const1, X), ... }", which has a value of UNKNOWN,
|
|
|
|
i.e. NULL). If the query produces no rows, the result is FALSE.
|
2006-10-31 18:51:09 +01:00
|
|
|
|
2006-10-31 19:30:40 +01:00
|
|
|
We currently evaluate (1) by doing a full table scan. (2) can be
|
|
|
|
evaluated by doing a "ref" scan on "keypart1=const1", which can be much
|
|
|
|
cheaper. We can use index statistics to quickly check whether "ref" scan
|
|
|
|
will be cheaper than full table scan.
|
2006-10-31 18:51:09 +01:00
|
|
|
|
|
|
|
RETURN
|
|
|
|
0
|
|
|
|
1
|
|
|
|
*/
|
|
|
|
|
|
|
|
int subselect_indexsubquery_engine::exec(bool full_scan)
|
2003-07-07 23:08:00 +02:00
|
|
|
{
|
2006-10-31 18:51:09 +01:00
|
|
|
DBUG_ENTER("subselect_indexsubquery_engine::exec");
|
2003-07-07 23:08:00 +02:00
|
|
|
int error;
|
2003-09-08 20:58:09 +02:00
|
|
|
bool null_finding= 0;
|
2003-07-07 23:08:00 +02:00
|
|
|
TABLE *table= tab->table;
|
2003-07-17 18:39:31 +02:00
|
|
|
|
2003-07-07 23:08:00 +02:00
|
|
|
((Item_in_subselect *) item)->value= 0;
|
2006-10-31 18:51:09 +01:00
|
|
|
empty_result_set= TRUE;
|
|
|
|
null_keypart= 0;
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2003-07-17 18:39:31 +02:00
|
|
|
if (check_null)
|
|
|
|
{
|
2003-09-29 11:39:38 +02:00
|
|
|
/* We need to check for NULL if there wasn't a matching value */
|
2004-01-31 07:04:16 +01:00
|
|
|
*tab->ref.null_ref_key= 0; // Search first for not null
|
2003-07-17 18:39:31 +02:00
|
|
|
((Item_in_subselect *) item)->was_null= 0;
|
|
|
|
}
|
|
|
|
|
2006-10-31 18:51:09 +01:00
|
|
|
/* Copy the ref key and check for nulls... */
|
|
|
|
if (copy_ref_key())
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
|
|
|
|
if (null_keypart)
|
|
|
|
DBUG_RETURN(scan_table());
|
2004-08-12 16:31:23 +02:00
|
|
|
|
|
|
|
if (!table->file->inited)
|
2005-07-18 13:31:02 +02:00
|
|
|
table->file->ha_index_init(tab->ref.key, 1);
|
2004-08-12 16:31:23 +02:00
|
|
|
error= table->file->index_read(table->record[0],
|
|
|
|
tab->ref.key_buff,
|
|
|
|
tab->ref.key_length,HA_READ_KEY_EXACT);
|
2004-10-07 13:13:42 +02:00
|
|
|
if (error &&
|
|
|
|
error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE)
|
2004-08-12 16:31:23 +02:00
|
|
|
error= report_error(table, error);
|
2003-07-07 23:08:00 +02:00
|
|
|
else
|
|
|
|
{
|
2004-08-12 16:31:23 +02:00
|
|
|
for (;;)
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
2004-08-12 16:31:23 +02:00
|
|
|
error= 0;
|
|
|
|
table->null_row= 0;
|
|
|
|
if (!table->status)
|
2003-07-07 23:08:00 +02:00
|
|
|
{
|
2004-08-12 16:31:23 +02:00
|
|
|
if (!cond || cond->val_int())
|
|
|
|
{
|
|
|
|
if (null_finding)
|
|
|
|
((Item_in_subselect *) item)->was_null= 1;
|
|
|
|
else
|
|
|
|
((Item_in_subselect *) item)->value= 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
error= table->file->index_next_same(table->record[0],
|
|
|
|
tab->ref.key_buff,
|
|
|
|
tab->ref.key_length);
|
|
|
|
if (error && error != HA_ERR_END_OF_FILE)
|
|
|
|
{
|
|
|
|
error= report_error(table, error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!check_null || null_finding)
|
|
|
|
break; /* We don't need to check nulls */
|
|
|
|
*tab->ref.null_ref_key= 1;
|
|
|
|
null_finding= 1;
|
|
|
|
/* Check if there exists a row with a null value in the index */
|
|
|
|
if ((error= (safe_index_read(tab) == 1)))
|
|
|
|
break;
|
2003-07-07 23:08:00 +02:00
|
|
|
}
|
2003-07-07 17:40:19 +02:00
|
|
|
}
|
|
|
|
}
|
2003-09-29 11:39:38 +02:00
|
|
|
DBUG_RETURN(error != 0);
|
2003-07-07 17:40:19 +02:00
|
|
|
}
|
|
|
|
|
2003-09-29 11:39:38 +02:00
|
|
|
|
2002-09-03 08:50:36 +02:00
|
|
|
uint subselect_single_select_engine::cols()
|
|
|
|
{
|
2005-02-25 15:53:22 +01:00
|
|
|
DBUG_ASSERT(select_lex->join != 0); // should be called after fix_fields()
|
2005-01-24 13:25:44 +01:00
|
|
|
return select_lex->join->fields_list.elements;
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2002-09-03 08:50:36 +02:00
|
|
|
uint subselect_union_engine::cols()
|
|
|
|
{
|
2005-01-24 13:25:44 +01:00
|
|
|
DBUG_ASSERT(unit->is_prepared()); // should be called after fix_fields()
|
|
|
|
return unit->types.elements;
|
2002-09-03 08:50:36 +02:00
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2003-11-17 19:53:40 +01:00
|
|
|
uint8 subselect_single_select_engine::uncacheable()
|
2003-01-28 13:48:12 +01:00
|
|
|
{
|
|
|
|
return select_lex->uncacheable;
|
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2003-11-17 19:53:40 +01:00
|
|
|
uint8 subselect_union_engine::uncacheable()
|
2003-01-28 13:48:12 +01:00
|
|
|
{
|
|
|
|
return unit->uncacheable;
|
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2002-11-28 18:29:26 +01:00
|
|
|
void subselect_single_select_engine::exclude()
|
|
|
|
{
|
|
|
|
select_lex->master_unit()->exclude_level();
|
|
|
|
}
|
|
|
|
|
|
|
|
void subselect_union_engine::exclude()
|
|
|
|
{
|
|
|
|
unit->exclude_level();
|
|
|
|
}
|
2003-07-07 17:40:19 +02:00
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
2003-09-14 08:40:57 +02:00
|
|
|
void subselect_uniquesubquery_engine::exclude()
|
2003-07-07 17:40:19 +02:00
|
|
|
{
|
|
|
|
//this never should be called
|
|
|
|
DBUG_ASSERT(0);
|
|
|
|
}
|
2003-10-16 23:36:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
table_map subselect_engine::calc_const_tables(TABLE_LIST *table)
|
|
|
|
{
|
|
|
|
table_map map= 0;
|
2005-06-01 15:35:09 +02:00
|
|
|
for (; table; table= table->next_leaf)
|
2003-10-16 23:36:01 +02:00
|
|
|
{
|
|
|
|
TABLE *tbl= table->table;
|
|
|
|
if (tbl && tbl->const_table)
|
|
|
|
map|= tbl->map;
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
table_map subselect_single_select_engine::upper_select_const_tables()
|
|
|
|
{
|
|
|
|
return calc_const_tables((TABLE_LIST *) select_lex->outer_select()->
|
2004-09-14 18:28:29 +02:00
|
|
|
leaf_tables);
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
|
|
|
|
2003-10-28 11:45:37 +01:00
|
|
|
|
2003-10-16 23:36:01 +02:00
|
|
|
table_map subselect_union_engine::upper_select_const_tables()
|
|
|
|
{
|
2004-09-14 18:28:29 +02:00
|
|
|
return calc_const_tables((TABLE_LIST *) unit->outer_select()->leaf_tables);
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
2003-10-28 11:45:37 +01:00
|
|
|
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
void subselect_single_select_engine::print(String *str)
|
|
|
|
{
|
|
|
|
select_lex->print(thd, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void subselect_union_engine::print(String *str)
|
|
|
|
{
|
|
|
|
unit->print(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void subselect_uniquesubquery_engine::print(String *str)
|
|
|
|
{
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN("<primary_index_lookup>("));
|
2003-10-16 14:54:47 +02:00
|
|
|
tab->ref.items[0]->print(str);
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" in "));
|
2005-11-23 21:45:02 +01:00
|
|
|
str->append(tab->table->s->table_name.str, tab->table->s->table_name.length);
|
2003-10-19 13:22:17 +02:00
|
|
|
KEY *key_info= tab->table->key_info+ tab->ref.key;
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" on "));
|
2003-10-19 13:22:17 +02:00
|
|
|
str->append(key_info->name);
|
2003-10-16 14:54:47 +02:00
|
|
|
if (cond)
|
|
|
|
{
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" where "));
|
2003-10-16 14:54:47 +02:00
|
|
|
cond->print(str);
|
|
|
|
}
|
|
|
|
str->append(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void subselect_indexsubquery_engine::print(String *str)
|
|
|
|
{
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN("<index_lookup>("));
|
2003-10-16 14:54:47 +02:00
|
|
|
tab->ref.items[0]->print(str);
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" in "));
|
2005-11-23 21:45:02 +01:00
|
|
|
str->append(tab->table->s->table_name.str, tab->table->s->table_name.length);
|
2003-10-19 13:22:17 +02:00
|
|
|
KEY *key_info= tab->table->key_info+ tab->ref.key;
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" on "));
|
2003-10-19 13:22:17 +02:00
|
|
|
str->append(key_info->name);
|
2003-10-16 14:54:47 +02:00
|
|
|
if (check_null)
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" checking NULL"));
|
2003-10-16 14:54:47 +02:00
|
|
|
if (cond)
|
|
|
|
{
|
2005-11-20 19:47:07 +01:00
|
|
|
str->append(STRING_WITH_LEN(" where "));
|
2003-10-16 14:54:47 +02:00
|
|
|
cond->print(str);
|
|
|
|
}
|
|
|
|
str->append(')');
|
|
|
|
}
|
2004-05-07 22:06:11 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
change select_result object of engine
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
SYNOPSIS
|
2004-05-07 22:06:11 +02:00
|
|
|
subselect_single_select_engine::change_result()
|
|
|
|
si new subselect Item
|
|
|
|
res new select_result object
|
|
|
|
|
|
|
|
RETURN
|
2004-10-20 03:04:37 +02:00
|
|
|
FALSE OK
|
|
|
|
TRUE error
|
2004-05-07 22:06:11 +02:00
|
|
|
*/
|
|
|
|
|
2004-10-20 03:04:37 +02:00
|
|
|
bool subselect_single_select_engine::change_result(Item_subselect *si,
|
|
|
|
select_subselect *res)
|
2004-05-07 22:06:11 +02:00
|
|
|
{
|
|
|
|
item= si;
|
|
|
|
result= res;
|
|
|
|
return select_lex->join->change_result(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
change select_result object of engine
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
SYNOPSIS
|
2004-05-07 22:06:11 +02:00
|
|
|
subselect_single_select_engine::change_result()
|
|
|
|
si new subselect Item
|
|
|
|
res new select_result object
|
|
|
|
|
|
|
|
RETURN
|
2004-10-20 03:04:37 +02:00
|
|
|
FALSE OK
|
|
|
|
TRUE error
|
2004-05-07 22:06:11 +02:00
|
|
|
*/
|
|
|
|
|
2004-10-20 03:04:37 +02:00
|
|
|
bool subselect_union_engine::change_result(Item_subselect *si,
|
|
|
|
select_subselect *res)
|
2004-05-07 22:06:11 +02:00
|
|
|
{
|
|
|
|
item= si;
|
|
|
|
int rc= unit->change_result(res, result);
|
|
|
|
result= res;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
change select_result emulation, never should be called
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
SYNOPSIS
|
2004-05-07 22:06:11 +02:00
|
|
|
subselect_single_select_engine::change_result()
|
|
|
|
si new subselect Item
|
|
|
|
res new select_result object
|
|
|
|
|
|
|
|
RETURN
|
2004-10-20 03:04:37 +02:00
|
|
|
FALSE OK
|
|
|
|
TRUE error
|
2004-05-07 22:06:11 +02:00
|
|
|
*/
|
|
|
|
|
2004-10-20 03:04:37 +02:00
|
|
|
bool subselect_uniquesubquery_engine::change_result(Item_subselect *si,
|
|
|
|
select_subselect *res)
|
2004-05-07 22:06:11 +02:00
|
|
|
{
|
|
|
|
DBUG_ASSERT(0);
|
2004-10-20 03:04:37 +02:00
|
|
|
return TRUE;
|
2004-05-07 22:06:11 +02:00
|
|
|
}
|
2004-10-27 20:11:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Report about presence of tables in subquery
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
SYNOPSIS
|
2004-10-27 20:11:06 +02:00
|
|
|
subselect_single_select_engine::no_tables()
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
TRUE there are not tables used in subquery
|
|
|
|
FALSE there are some tables in subquery
|
|
|
|
*/
|
|
|
|
bool subselect_single_select_engine::no_tables()
|
|
|
|
{
|
|
|
|
return(select_lex->table_list.elements == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Report about presence of tables in subquery
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
SYNOPSIS
|
2004-10-27 20:11:06 +02:00
|
|
|
subselect_union_engine::no_tables()
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
TRUE there are not tables used in subquery
|
|
|
|
FALSE there are some tables in subquery
|
|
|
|
*/
|
|
|
|
bool subselect_union_engine::no_tables()
|
|
|
|
{
|
|
|
|
for (SELECT_LEX *sl= unit->first_select(); sl; sl= sl->next_select())
|
|
|
|
{
|
|
|
|
if (sl->table_list.elements)
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Report about presence of tables in subquery
|
|
|
|
|
2005-02-08 23:50:45 +01:00
|
|
|
SYNOPSIS
|
2004-10-27 20:11:06 +02:00
|
|
|
subselect_uniquesubquery_engine::no_tables()
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
TRUE there are not tables used in subquery
|
|
|
|
FALSE there are some tables in subquery
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool subselect_uniquesubquery_engine::no_tables()
|
|
|
|
{
|
|
|
|
/* returning value is correct, but this method should never be called */
|
|
|
|
return 0;
|
|
|
|
}
|