mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
after review fixes
mysql-test/r/union.result: new tests, more correct results for old one mysql-test/t/union.test: new tests, more correct results for old one sql/field.cc: new way to make field types csting sql/field.h: new way to make field types csting sql/item.cc: new way to make field types csting sql/sql_derived.cc: fixed typo sql/sql_lex.h: comment added
This commit is contained in:
@ -309,7 +309,13 @@ protected:
|
||||
public:
|
||||
// list of fields which points to temporary table for union
|
||||
List<Item> item_list;
|
||||
// list of types of items inside union (used for union & derived tables)
|
||||
/*
|
||||
list of types of items inside union (used for union & derived tables)
|
||||
|
||||
Item_type_holders from which this list consist may have pointers to Field,
|
||||
pointers is valid only after preparing SELECTS of this unit and before
|
||||
any SELECT of this unit execution
|
||||
*/
|
||||
List<Item> types;
|
||||
/*
|
||||
Pointer to 'last' select or pointer to unit where stored
|
||||
|
Reference in New Issue
Block a user