2006-02-24 17:34:15 +01:00
|
|
|
# mysqltest should be fixed
|
2016-06-10 20:54:24 +02:00
|
|
|
--source include/not_embedded.inc
|
|
|
|
--source include/have_innodb.inc
|
2013-07-03 21:50:34 +02:00
|
|
|
|
2000-12-28 02:56:38 +01:00
|
|
|
#
|
|
|
|
# Test of temporary tables
|
|
|
|
#
|
|
|
|
|
2003-01-06 00:48:59 +01:00
|
|
|
--disable_warnings
|
2000-12-28 02:56:38 +01:00
|
|
|
drop table if exists t1,t2;
|
2005-09-22 02:23:07 +02:00
|
|
|
drop view if exists v1;
|
2003-01-06 00:48:59 +01:00
|
|
|
--enable_warnings
|
|
|
|
|
2013-07-03 21:50:34 +02:00
|
|
|
--echo #
|
|
|
|
--echo # test basic creation of temporary tables together with normal table
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
create table t1 (a int);
|
|
|
|
create temporary table t1 AS SELECT 1;
|
|
|
|
--error 1050
|
|
|
|
create temporary table t1 AS SELECT 1;
|
|
|
|
--error 1050
|
|
|
|
create temporary table t1 (a int);
|
|
|
|
drop temporary table t1;
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
create temporary table t1 AS SELECT 1;
|
|
|
|
--error 1050
|
|
|
|
create temporary table t1 AS SELECT 1;
|
|
|
|
--error 1050
|
|
|
|
create temporary table t1 (a int);
|
|
|
|
drop temporary table t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Test with rename
|
|
|
|
--echo #
|
|
|
|
|
2000-12-28 02:56:38 +01:00
|
|
|
CREATE TABLE t1 (c int not null, d char (10) not null);
|
|
|
|
insert into t1 values(1,""),(2,"a"),(3,"b");
|
|
|
|
CREATE TEMPORARY TABLE t1 (a int not null, b char (10) not null);
|
|
|
|
insert into t1 values(4,"e"),(5,"f"),(6,"g");
|
|
|
|
alter table t1 rename t2;
|
|
|
|
select * from t1;
|
|
|
|
select * from t2;
|
|
|
|
CREATE TABLE t2 (x int not null, y int not null);
|
|
|
|
alter table t2 rename t1;
|
|
|
|
select * from t1;
|
2003-12-10 05:31:42 +01:00
|
|
|
create TEMPORARY TABLE t2 engine=heap select * from t1;
|
|
|
|
create TEMPORARY TABLE IF NOT EXISTS t2 (a int) engine=heap;
|
2000-12-28 02:56:38 +01:00
|
|
|
|
|
|
|
# This should give errors
|
2004-11-02 19:13:27 +01:00
|
|
|
--error 1050
|
|
|
|
CREATE TEMPORARY TABLE t1 (a int not null, b char (10) not null);
|
|
|
|
--error 1050
|
|
|
|
ALTER TABLE t1 RENAME t2;
|
2000-12-28 02:56:38 +01:00
|
|
|
|
|
|
|
select * from t2;
|
|
|
|
alter table t2 add primary key (a,b);
|
|
|
|
drop table t1,t2;
|
|
|
|
select * from t1;
|
|
|
|
drop table t2;
|
|
|
|
create temporary table t1 select *,2 as "e" from t1;
|
|
|
|
select * from t1;
|
|
|
|
drop table t1;
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test CONCAT_WS with temporary tables
|
|
|
|
#
|
|
|
|
|
|
|
|
CREATE TABLE t1 (pkCrash INTEGER PRIMARY KEY,strCrash VARCHAR(255));
|
|
|
|
INSERT INTO t1 ( pkCrash, strCrash ) VALUES ( 1, '1');
|
|
|
|
SELECT CONCAT_WS(pkCrash, strCrash) FROM t1;
|
|
|
|
drop table t1;
|
|
|
|
create temporary table t1 select 1 as 'x';
|
|
|
|
drop table t1;
|
|
|
|
CREATE TABLE t1 (x INT);
|
|
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
|
|
CREATE TEMPORARY TABLE tmp SELECT *, NULL FROM t1;
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Problem with ELT
|
|
|
|
#
|
|
|
|
create temporary table t1 (id int(10) not null unique);
|
|
|
|
create temporary table t2 (id int(10) not null primary key,
|
|
|
|
val int(10) not null);
|
|
|
|
|
|
|
|
# put in some initial values
|
|
|
|
insert into t1 values (1),(2),(4);
|
|
|
|
insert into t2 values (1,1),(2,1),(3,1),(4,2);
|
|
|
|
|
|
|
|
# do a query using ELT, a join and an ORDER BY.
|
|
|
|
select one.id, two.val, elt(two.val,'one','two') from t1 one, t2 two where two.id=one.id order by one.id;
|
|
|
|
drop table t1,t2;
|
2002-10-29 21:56:30 +01:00
|
|
|
|
2002-12-05 02:52:53 +01:00
|
|
|
#
|
|
|
|
# Test of failed ALTER TABLE on temporary table
|
|
|
|
#
|
2002-12-04 20:50:59 +01:00
|
|
|
create temporary table t1 (a int not null);
|
|
|
|
insert into t1 values (1),(1);
|
2007-06-06 19:57:07 +02:00
|
|
|
-- error ER_DUP_ENTRY
|
2002-12-04 20:50:59 +01:00
|
|
|
alter table t1 add primary key (a);
|
|
|
|
drop table t1;
|
2002-12-05 02:52:53 +01:00
|
|
|
|
2002-10-29 21:56:30 +01:00
|
|
|
#
|
|
|
|
# In MySQL 4.0.4 doing a GROUP BY on a NULL column created a disk based
|
|
|
|
# temporary table when a memory based one would be good enough.
|
|
|
|
|
|
|
|
CREATE TABLE t1 (
|
|
|
|
d datetime default NULL
|
2003-12-10 05:31:42 +01:00
|
|
|
) ENGINE=MyISAM;
|
2002-10-29 21:56:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO t1 VALUES ('2002-10-24 14:50:32'),('2002-10-24 14:50:33'),('2002-10-24 14:50:34'),('2002-10-24 14:50:34'),('2002-10-24 14:50:34'),('2002-10-24 14:50:35'),('2002-10-24 14:50:35'),('2002-10-24 14:50:35'),('2002-10-24 14:50:35'),('2002-10-24 14:50:36'),('2002-10-24 14:50:36'),('2002-10-24 14:50:36'),('2002-10-24 14:50:36'),('2002-10-24 14:50:37'),('2002-10-24 14:50:37'),('2002-10-24 14:50:37'),('2002-10-24 14:50:37'),('2002-10-24 14:50:38'),('2002-10-24 14:50:38'),('2002-10-24 14:50:38'),('2002-10-24 14:50:39'),('2002-10-24 14:50:39'),('2002-10-24 14:50:39'),('2002-10-24 14:50:39'),('2002-10-24 14:50:40'),('2002-10-24 14:50:40'),('2002-10-24 14:50:40');
|
|
|
|
|
|
|
|
flush status;
|
MDEV-15945 --ps-protocol does not test some queries
Make mysqltest to use --ps-protocol more
use prepared statements for everything that server supports
with the exception of CALL (for now).
Fix discovered test failures and bugs.
tests:
* PROCESSLIST shows Execute state, not Query
* SHOW STATUS increments status variables more than in text protocol
* multi-statements should be avoided (see tests with a wrong delimiter)
* performance_schema events have different names in --ps-protocol
* --enable_prepare_warnings
mysqltest.cc:
* make sure run_query_stmt() doesn't crash if there's
no active connection (in wait_until_connected_again.inc)
* prepare all statements that server supports
protocol.h
* Protocol_discard::send_result_set_metadata() should not send
anything to the client.
sql_acl.cc:
* extract the functionality of getting the user for SHOW GRANTS
from check_show_access(), so that mysql_test_show_grants() could
generate the correct column names in the prepare step
sql_class.cc:
* result->prepare() can fail, don't ignore its return value
* use correct number of decimals for EXPLAIN columns
sql_parse.cc:
* discard profiling for SHOW PROFILE. In text protocol it's done in
prepare_schema_table(), but in --ps it is called on prepare only,
so nothing was discarding profiling during execute.
* move the permission checking code for SHOW CREATE VIEW to
mysqld_show_create_get_fields(), so that it would be called during
prepare step too.
* only set sel_result when it was created here and needs to be
destroyed in the same block. Avoid destroying lex->result.
* use the correct number of tables in check_show_access(). Saying
"as many as possible" doesn't work when first_not_own_table isn't
set yet.
sql_prepare.cc:
* use correct user name for SHOW GRANTS columns
* don't ignore verbose flag for SHOW SLAVE STATUS
* support preparing REVOKE ALL and ROLLBACK TO SAVEPOINT
* don't ignore errors from thd->prepare_explain_fields()
* use select_send result for sending ANALYZE and EXPLAIN, but don't
overwrite lex->result, because it might be needed to issue execute-time
errors (select_dumpvar - too many rows)
sql_show.cc:
* check grants for SHOW CREATE VIEW here, not in mysql_execute_command
sql_view.cc:
* use the correct function to check privileges. Old code was doing
check_access() for thd->security_ctx, which is invoker's sctx,
not definer's sctx. Hide various view related errors from the invoker.
sql_yacc.yy:
* initialize lex->select_lex for LOAD, otherwise it'll contain garbage
data that happen to fail tests with views in --ps (but not otherwise).
2019-03-10 23:59:50 +01:00
|
|
|
--disable_ps_protocol
|
2002-10-29 21:56:30 +01:00
|
|
|
select * from t1 group by d;
|
|
|
|
show status like "created_tmp%tables";
|
MDEV-15945 --ps-protocol does not test some queries
Make mysqltest to use --ps-protocol more
use prepared statements for everything that server supports
with the exception of CALL (for now).
Fix discovered test failures and bugs.
tests:
* PROCESSLIST shows Execute state, not Query
* SHOW STATUS increments status variables more than in text protocol
* multi-statements should be avoided (see tests with a wrong delimiter)
* performance_schema events have different names in --ps-protocol
* --enable_prepare_warnings
mysqltest.cc:
* make sure run_query_stmt() doesn't crash if there's
no active connection (in wait_until_connected_again.inc)
* prepare all statements that server supports
protocol.h
* Protocol_discard::send_result_set_metadata() should not send
anything to the client.
sql_acl.cc:
* extract the functionality of getting the user for SHOW GRANTS
from check_show_access(), so that mysql_test_show_grants() could
generate the correct column names in the prepare step
sql_class.cc:
* result->prepare() can fail, don't ignore its return value
* use correct number of decimals for EXPLAIN columns
sql_parse.cc:
* discard profiling for SHOW PROFILE. In text protocol it's done in
prepare_schema_table(), but in --ps it is called on prepare only,
so nothing was discarding profiling during execute.
* move the permission checking code for SHOW CREATE VIEW to
mysqld_show_create_get_fields(), so that it would be called during
prepare step too.
* only set sel_result when it was created here and needs to be
destroyed in the same block. Avoid destroying lex->result.
* use the correct number of tables in check_show_access(). Saying
"as many as possible" doesn't work when first_not_own_table isn't
set yet.
sql_prepare.cc:
* use correct user name for SHOW GRANTS columns
* don't ignore verbose flag for SHOW SLAVE STATUS
* support preparing REVOKE ALL and ROLLBACK TO SAVEPOINT
* don't ignore errors from thd->prepare_explain_fields()
* use select_send result for sending ANALYZE and EXPLAIN, but don't
overwrite lex->result, because it might be needed to issue execute-time
errors (select_dumpvar - too many rows)
sql_show.cc:
* check grants for SHOW CREATE VIEW here, not in mysql_execute_command
sql_view.cc:
* use the correct function to check privileges. Old code was doing
check_access() for thd->security_ctx, which is invoker's sctx,
not definer's sctx. Hide various view related errors from the invoker.
sql_yacc.yy:
* initialize lex->select_lex for LOAD, otherwise it'll contain garbage
data that happen to fail tests with views in --ps (but not otherwise).
2019-03-10 23:59:50 +01:00
|
|
|
--enable_ps_protocol
|
2002-10-29 21:56:30 +01:00
|
|
|
drop table t1;
|
2005-04-25 02:00:35 +02:00
|
|
|
|
|
|
|
# Fix for BUG#8921: Check that temporary table is ingored by view commands.
|
2005-09-22 02:23:07 +02:00
|
|
|
create temporary table v1 as select 'This is temp. table' A;
|
|
|
|
create view v1 as select 'This is view' A;
|
|
|
|
select * from v1;
|
|
|
|
show create table v1;
|
|
|
|
show create view v1;
|
|
|
|
drop view v1;
|
|
|
|
select * from v1;
|
|
|
|
create view v1 as select 'This is view again' A;
|
|
|
|
select * from v1;
|
|
|
|
drop table v1;
|
|
|
|
select * from v1;
|
|
|
|
drop view v1;
|
2005-04-25 02:00:35 +02:00
|
|
|
|
2005-03-02 04:05:48 +01:00
|
|
|
# Bug #8497: tmpdir with extra slashes would cause failures
|
|
|
|
#
|
|
|
|
create table t1 (a int, b int, index(a), index(b));
|
|
|
|
create table t2 (c int auto_increment, d varchar(255), primary key (c));
|
|
|
|
insert into t1 values (3,1),(3,2);
|
|
|
|
insert into t2 values (NULL, 'foo'), (NULL, 'bar');
|
|
|
|
select d, c from t1 left join t2 on b = c where a = 3 order by d;
|
|
|
|
drop table t1, t2;
|
2005-07-28 02:22:47 +02:00
|
|
|
|
2006-08-29 14:59:20 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# BUG#21096: locking issue ; temporary table conflicts.
|
|
|
|
#
|
|
|
|
# The problem was that on DROP TEMPORARY table name lock was acquired,
|
|
|
|
# which should not be done.
|
|
|
|
#
|
|
|
|
--disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
CREATE TABLE t1 (i INT);
|
|
|
|
|
|
|
|
LOCK TABLE t1 WRITE;
|
|
|
|
|
|
|
|
connect (conn1, localhost, root,,);
|
|
|
|
|
|
|
|
CREATE TEMPORARY TABLE t1 (i INT);
|
|
|
|
|
|
|
|
--echo The following command should not block
|
|
|
|
DROP TEMPORARY TABLE t1;
|
|
|
|
|
|
|
|
disconnect conn1;
|
|
|
|
connection default;
|
|
|
|
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check that it's not possible to drop a base table with
|
|
|
|
# DROP TEMPORARY statement.
|
|
|
|
#
|
|
|
|
CREATE TABLE t1 (i INT);
|
|
|
|
CREATE TEMPORARY TABLE t2 (i INT);
|
|
|
|
|
|
|
|
--error 1051
|
|
|
|
DROP TEMPORARY TABLE t2, t1;
|
|
|
|
|
|
|
|
# Table t2 should have been dropped.
|
|
|
|
--error 1146
|
|
|
|
SELECT * FROM t2;
|
|
|
|
# But table t1 should still be there.
|
|
|
|
SELECT * FROM t1;
|
|
|
|
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
|
|
|
|
--echo End of 4.1 tests.
|
2006-09-29 17:39:15 +02:00
|
|
|
|
Bug #24791: Union with AVG-groups generates wrong results
The problem in this bug is when we create temporary tables. When
temporary tables are created for unions, there is some
inferrence being carried out regarding the type of the column.
Whenever this column type is inferred to be REAL (i.e. FLOAT or
DOUBLE), MySQL will always try to maintain exact precision, and
if that is not possible (there are hardware limits, since FLOAT
and DOUBLE are stored as approximate values) will switch to
using approximate values. The problem here is that at this point
the information about number of significant digits is not
available. Furthermore, the number of significant digits should
be increased for the AVG function, however, this was not properly
handled. There are 4 parts to the problem:
#1: DOUBLE and FLOAT fields don't display their proper display
lengths in max_display_length(). This is hard-coded as 53 for
DOUBLE and 24 for FLOAT. Now changed to instead return the
field_length.
#2: Type holders for temporary tables do not preserve the
max_length of the Item's from which they are created, and is
instead reverted to the 53 and 24 from above. This causes
*all* fields to get non-fixed significant digits.
#3: AVG function does not update max_length (display length)
when updating number of decimals.
#4: The function that switches to non-fixed number of
significant digits should use DBL_DIG + 2 or FLT_DIG + 2 as
cut-off values (Since fixed precision does not use the 'e'
notation)
Of these points, #1 is the controversial one, but this
change is preferred and has been cleared with Monty. The
function causes quite a few unit tests to blow up and they had
to b changed, but each one is annotated and motivated. We
frequently see the magical 53 and 24 give way to more relevant
numbers.
mysql-test/r/create.result:
bug#24791
changed test result
With the changes made for FLOAT and DOUBLE, the original display
lengths are now preserved.
mysql-test/r/temp_table.result:
bug#24791
changed test resullt
Test case added
mysql-test/r/type_float.result:
bug#24791
changed test result
delta 1: field was originally declared as DOUBLE with no display
length, so the hardware maximum is chosen rather than 53.
delta 2: fields exceed the maximum precision and thus switch to
non-fixed significant digits
delta 3: Same as above, number of decmals and significant digits
was not specified when t3 was created.
mysql-test/t/temp_table.test:
bug#24791
Test case
sql/field.h:
bug#24791
The method max_display_length is reimplemented as
uint32 max_display_length() { return field_length; }
in Field_double and Field_float. Since all subclasses of
Field_real now have the same implementation of this method, the
implementation has been moved up the hierarchy to Field_real.
sql/item.cc:
bug#24791
We switch to a non-fixed number of significant digits
(by setting decimals=NOT_FIXED_DECIMAL) if the calculated
display length is greater than the display length of a value
with the maximum precision. These values differ for double and
float, obviously.
sql/item_sum.cc:
bug#24791
We must increase the display length accordinly whenever we
change number of decimal places.
2007-03-22 10:56:47 +01:00
|
|
|
#
|
|
|
|
# Bug #24791: Union with AVG-groups generates wrong results
|
|
|
|
#
|
|
|
|
CREATE TABLE t1 ( c FLOAT( 20, 14 ) );
|
|
|
|
INSERT INTO t1 VALUES( 12139 );
|
|
|
|
|
|
|
|
CREATE TABLE t2 ( c FLOAT(30,18) );
|
|
|
|
INSERT INTO t2 VALUES( 123456 );
|
|
|
|
|
|
|
|
SELECT AVG( c ) FROM t1 UNION SELECT 1;
|
|
|
|
SELECT 1 UNION SELECT AVG( c ) FROM t1;
|
|
|
|
SELECT 1 UNION SELECT * FROM t2 UNION SELECT 1;
|
|
|
|
SELECT c/1 FROM t1 UNION SELECT 1;
|
|
|
|
|
|
|
|
DROP TABLE t1, t2;
|
Table definition cache, part 2
The table opening process now works the following way:
- Create common TABLE_SHARE object
- Read the .frm file and unpack it into the TABLE_SHARE object
- Create a TABLE object based on the information in the TABLE_SHARE
object and open a handler to the table object
Other noteworthy changes:
- In TABLE_SHARE the most common strings are now LEX_STRING's
- Better error message when table is not found
- Variable table_cache is now renamed 'table_open_cache'
- New variable 'table_definition_cache' that is the number of table defintions that will be cached
- strxnmov() calls are now fixed to avoid overflows
- strxnmov() will now always add one end \0 to result
- engine objects are now created with a TABLE_SHARE object instead of a TABLE object.
- After creating a field object one must call field->init(table) before using it
- For a busy system this change will give you:
- Less memory usage for table object
- Faster opening of tables (if it's has been in use or is in table definition cache)
- Allow you to cache many table definitions objects
- Faster drop of table
mysql-test/mysql-test-run.sh:
Fixed some problems with --gdb option
Test both with socket and tcp/ip port that all old servers are killed
mysql-test/r/flush_table.result:
More tests with lock table with 2 threads + flush table
mysql-test/r/information_schema.result:
Removed old (now wrong) result
mysql-test/r/innodb.result:
Better error messages (thanks to TDC patch)
mysql-test/r/merge.result:
Extra flush table test
mysql-test/r/ndb_bitfield.result:
Better error messages (thanks to TDC patch)
mysql-test/r/ndb_partition_error.result:
Better error messages (thanks to TDC patch)
mysql-test/r/query_cache.result:
Remove tables left from old tests
mysql-test/r/temp_table.result:
Test truncate with temporary tables
mysql-test/r/variables.result:
Table_cache -> Table_open_cache
mysql-test/t/flush_table.test:
More tests with lock table with 2 threads + flush table
mysql-test/t/merge.test:
Extra flush table test
mysql-test/t/multi_update.test:
Added 'sleep' to make test predictable
mysql-test/t/query_cache.test:
Remove tables left from old tests
mysql-test/t/temp_table.test:
Test truncate with temporary tables
mysql-test/t/variables.test:
Table_cache -> Table_open_cache
mysql-test/valgrind.supp:
Remove warning that may happens becasue threads dies in different order
mysys/hash.c:
Fixed wrong DBUG_PRINT
mysys/mf_dirname.c:
More DBUG
mysys/mf_pack.c:
Better comment
mysys/mf_tempdir.c:
More DBUG
Ensure that we call cleanup_dirname() on all temporary directory paths.
If we don't do this, we will get a failure when comparing temporary table
names as in some cases the temporary table name is run through convert_dirname())
mysys/my_alloc.c:
Indentation fix
sql/examples/ha_example.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/examples/ha_example.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/examples/ha_tina.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/examples/ha_tina.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/field.cc:
Update for table definition cache:
- Field creation now takes TABLE_SHARE instead of TABLE as argument
(This is becasue field definitions are now cached in TABLE_SHARE)
When a field is created, one now must call field->init(TABLE) before using it
- Use s->db instead of s->table_cache_key
- Added Field::clone() to create a field in TABLE from a field in TABLE_SHARE
- make_field() takes TABLE_SHARE as argument instead of TABLE
- move_field() -> move_field_offset()
sql/field.h:
Update for table definition cache:
- Field creation now takes TABLE_SHARE instead of TABLE as argument
(This is becasue field definitions are now cached in TABLE_SHARE)
When a field is created, one now must call field->init(TABLE) before using it
- Added Field::clone() to create a field in TABLE from a field in TABLE_SHARE
- make_field() takes TABLE_SHARE as argument instead of TABLE
- move_field() -> move_field_offset()
sql/ha_archive.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_archive.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_berkeley.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Changed name of argument create() to not hide internal 'table' variable.
table->s -> table_share
sql/ha_berkeley.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_blackhole.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_blackhole.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_federated.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Fixed comments
Remove index variable and replace with pointers (simple optimization)
move_field() -> move_field_offset()
Removed some strlen() calls
sql/ha_federated.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_heap.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Simplify delete_table() and create() as the given file names are now without extension
sql/ha_heap.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_innodb.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_innodb.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_myisam.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Remove not needed fn_format()
Fixed for new table->s structure
sql/ha_myisam.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_myisammrg.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Don't set 'is_view' for MERGE tables
Use new interface to find_temporary_table()
sql/ha_myisammrg.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Added flag HA_NO_COPY_ON_ALTER
sql/ha_ndbcluster.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Fixed wrong calls to strxnmov()
Give error HA_ERR_TABLE_DEF_CHANGED if table definition has changed
drop_table -> intern_drop_table()
table->s -> table_share
Move part_info to TABLE
Fixed comments & DBUG print's
New arguments to print_error()
sql/ha_ndbcluster.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
sql/ha_partition.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
We can't set up or use part_info when creating handler as there is not yet any table object
New ha_intialise() to work with TDC (Done by Mikael)
sql/ha_partition.h:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
Got set_part_info() from Mikael
sql/handler.cc:
We new use TABLE_SHARE instead of TABLE when creating engine handlers
ha_delete_table() now also takes database as an argument
handler::ha_open() now takes TABLE as argument
ha_open() now calls ha_allocate_read_write_set()
Simplify ha_allocate_read_write_set()
Remove ha_deallocate_read_write_set()
Use table_share (Cached by table definition cache)
sql/handler.h:
New table flag: HA_NO_COPY_ON_ALTER (used by merge tables)
Remove ha_deallocate_read_write_set()
get_new_handler() now takes TABLE_SHARE as argument
ha_delete_table() now gets database as argument
sql/item.cc:
table_name and db are now LEX_STRING objects
When creating fields, we have now have to call field->init(table)
move_field -> move_field_offset()
sql/item.h:
tmp_table_field_from_field_type() now takes an extra paramenter 'fixed_length' to allow one to force usage of CHAR
instead of BLOB
sql/item_cmpfunc.cc:
Fixed call to tmp_table_field_from_field_type()
sql/item_create.cc:
Assert if new not handled cast type
sql/item_func.cc:
When creating fields, we have now have to call field->init(table)
dummy_table used by 'sp' now needs a TABLE_SHARE object
sql/item_subselect.cc:
Trivial code cleanups
sql/item_sum.cc:
When creating fields, we have now have to call field->init(table)
sql/item_timefunc.cc:
Item_func_str_to_date::tmp_table_field() now replaced by call to
tmp_table_field_from_field_type() (see item_timefunc.h)
sql/item_timefunc.h:
Simply tmp_table_field()
sql/item_uniq.cc:
When creating fields, we have now have to call field->init(table)
sql/key.cc:
Added 'KEY' argument to 'find_ref_key' to simplify code
sql/lock.cc:
More debugging
Use create_table_def_key() to create key for table cache
Allocate TABLE_SHARE properly when creating name lock
Fix that locked_table_name doesn't test same table twice
sql/mysql_priv.h:
New functions for table definition cache
New interfaces to a lot of functions.
New faster interface to find_temporary_table() and close_temporary_table()
sql/mysqld.cc:
Added support for table definition cache of size 'table_def_size'
Fixed som calls to strnmov()
Changed name of 'table_cache' to 'table_open_cache'
sql/opt_range.cc:
Use new interfaces
Fixed warnings from valgrind
sql/parse_file.cc:
Safer calls to strxnmov()
Fixed typo
sql/set_var.cc:
Added variable 'table_definition_cache'
Variable table_cache renamed to 'table_open_cache'
sql/slave.cc:
Use new interface
sql/sp.cc:
Proper use of TABLE_SHARE
sql/sp_head.cc:
Remove compiler warnings
We have now to call field->init(table)
sql/sp_head.h:
Pointers to parsed strings are now const
sql/sql_acl.cc:
table_name is now a LEX_STRING
sql/sql_base.cc:
Main implementation of table definition cache
(The #ifdef's are there for the future when table definition cache will replace open table cache)
Now table definitions are cached indepndent of open tables, which will speed up things when a table is in use at once from several places
Views are not yet cached; For the moment we only cache if a table is a view or not.
Faster implementation of find_temorary_table()
Replace 'wait_for_refresh()' with the more general function 'wait_for_condition()'
Drop table is slightly faster as we can use the table definition cache to know the type of the table
sql/sql_cache.cc:
table_cache_key and table_name are now LEX_STRING
'sDBUG print fixes
sql/sql_class.cc:
table_cache_key is now a LEX_STRING
safer strxnmov()
sql/sql_class.h:
Added number of open table shares (table definitions)
sql/sql_db.cc:
safer strxnmov()
sql/sql_delete.cc:
Use new interface to find_temporary_table()
sql/sql_derived.cc:
table_name is now a LEX_STRING
sql/sql_handler.cc:
TABLE_SHARE->db and TABLE_SHARE->table_name are now LEX_STRING's
sql/sql_insert.cc:
TABLE_SHARE->db and TABLE_SHARE->table_name are now LEX_STRING's
sql/sql_lex.cc:
Make parsed string a const (to quickly find out if anything is trying to change the query string)
sql/sql_lex.h:
Make parsed string a const (to quickly find out if anything is trying to change the query string)
sql/sql_load.cc:
Safer strxnmov()
sql/sql_parse.cc:
Better error if wrong DB name
sql/sql_partition.cc:
part_info moved to TABLE from TABLE_SHARE
Indentation changes
sql/sql_select.cc:
Indentation fixes
Call field->init(TABLE) for new created fields
Update create_tmp_table() to use TABLE_SHARE properly
sql/sql_select.h:
Call field->init(TABLE) for new created fields
sql/sql_show.cc:
table_name is now a LEX_STRING
part_info moved to TABLE
sql/sql_table.cc:
Use table definition cache to speed up delete of tables
Fixed calls to functions with new interfaces
Don't use 'share_not_to_be_used'
Instead of doing openfrm() when doing repair, we now have to call
get_table_share() followed by open_table_from_share().
Replace some fn_format() with faster unpack_filename().
Safer strxnmov()
part_info is now in TABLE
Added Mikaels patch for partition and ALTER TABLE
Instead of using 'TABLE_SHARE->is_view' use 'table_flags() & HA_NO_COPY_ON_ALTER
sql/sql_test.cc:
table_name and table_cache_key are now LEX_STRING's
sql/sql_trigger.cc:
TABLE_SHARE->db and TABLE_SHARE->table_name are now LEX_STRING's
safer strxnmov()
Removed compiler warnings
sql/sql_update.cc:
Call field->init(TABLE) after field is created
sql/sql_view.cc:
safer strxnmov()
Create common TABLE_SHARE object for views to allow us to cache if table is a view
sql/structs.h:
Added SHOW_TABLE_DEFINITIONS
sql/table.cc:
Creation and destruct of TABLE_SHARE objects that are common for many TABLE objects
The table opening process now works the following way:
- Create common TABLE_SHARE object
- Read the .frm file and unpack it into the TABLE_SHARE object
- Create a TABLE object based on the information in the TABLE_SHARE
object and open a handler to the table object
open_table_def() is written in such a way that it should be trival to add parsing of the .frm files in new formats
sql/table.h:
TABLE objects for the same database table now share a common TABLE_SHARE object
In TABLE_SHARE the most common strings are now LEX_STRING's
sql/unireg.cc:
Changed arguments to rea_create_table() to have same order as other functions
Call field->init(table) for new created fields
sql/unireg.h:
Added OPEN_VIEW
strings/strxnmov.c:
Change strxnmov() to always add end \0
This makes usage of strxnmov() safer as most of MySQL code assumes that strxnmov() will create a null terminated string
2005-11-23 21:45:02 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test truncate with temporary tables
|
|
|
|
#
|
|
|
|
|
|
|
|
create temporary table t1 (a int);
|
|
|
|
insert into t1 values (4711);
|
|
|
|
select * from t1;
|
|
|
|
truncate t1;
|
|
|
|
insert into t1 values (42);
|
|
|
|
select * from t1;
|
|
|
|
drop table t1;
|
2008-03-28 16:16:52 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Bug #35392: Delete all statement does not execute properly after
|
|
|
|
# few delete statements
|
|
|
|
#
|
|
|
|
CREATE TEMPORARY TABLE t1(a INT, b VARCHAR(20));
|
|
|
|
INSERT INTO t1 VALUES(1, 'val1'), (2, 'val2'), (3, 'val3');
|
|
|
|
DELETE FROM t1 WHERE a=1;
|
|
|
|
SELECT count(*) FROM t1;
|
|
|
|
DELETE FROM t1;
|
|
|
|
SELECT * FROM t1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
2009-01-07 13:11:37 +01:00
|
|
|
#
|
|
|
|
# Bug#41348: INSERT INTO tbl SELECT * FROM temp_tbl overwrites locking type of temp table
|
|
|
|
#
|
|
|
|
|
|
|
|
--disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1,t2;
|
|
|
|
DROP FUNCTION IF EXISTS f1;
|
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
CREATE TEMPORARY TABLE t1 (a INT);
|
|
|
|
CREATE TEMPORARY TABLE t2 LIKE t1;
|
|
|
|
|
|
|
|
DELIMITER |;
|
|
|
|
CREATE FUNCTION f1() RETURNS INT
|
|
|
|
BEGIN
|
|
|
|
return 1;
|
|
|
|
END|
|
|
|
|
DELIMITER ;|
|
|
|
|
|
|
|
|
INSERT INTO t2 SELECT * FROM t1;
|
|
|
|
INSERT INTO t1 SELECT f1();
|
|
|
|
|
|
|
|
CREATE TABLE t3 SELECT * FROM t1;
|
|
|
|
INSERT INTO t1 SELECT f1();
|
|
|
|
|
|
|
|
UPDATE t1,t2 SET t1.a = t2.a;
|
|
|
|
INSERT INTO t2 SELECT f1();
|
|
|
|
|
|
|
|
DROP TABLE t1,t2,t3;
|
|
|
|
DROP FUNCTION f1;
|
|
|
|
|
Backport from mysql-6.0-codebase of:
------------------------------------------------------------
revno: 3672
committer: lars-erik.bjork@sun.com
branch nick: 48067-mysql-6.0-codebase-bugfixing
timestamp: Mon 2009-10-26 13:51:43 +0100
message:
This is a patch for bug#48067
"A temp table with the same name as an existing table, makes drop
database fail"
When dropping the database, mysql_rm_known_files() reads the contents
of the database directory, and creates a TABLE_LIST object, for each
.frm file encountered. Temporary tables, however, are not associated
with any .frm file.
The list of tables to drop are passed to mysql_rm_table_part2().
This method prefers temporary tables over regular tables, so if
there is a temporary table with the same name as a regular, the
temporary is removed, leaving the regular table intact.
Regular tables are only deleted if there are no temporary tables
with the same name.
This fix ensures, that for all TABLE_LIST objects that are created
by mysql_rm_known_files(), 'open_type' is set to 'OT_BASE_ONLY', to
indicate that this is a regular table. In all cases in
mysql_rm_table_part2() where we prefer a temporary table to a
non-temporary table, we chek if 'open_type' equals 'OT_BASE_ONLY'.
mysql-test/r/temp_table.result:
The expected result of the test.
mysql-test/t/temp_table.test:
Test based on the bug report.
sql/sql_db.cc:
For all TABLE_LIST objects that are created by mysql_rm_known_files(),
'open_type' is set to 'OT_BASE_ONLY', to indicate that these are
regular tables.
sql/sql_table.cc:
Check if 'open_type' is set to 'OT_BASE_ONLY, every place a temporary table is
preferred to a non-temporary table.
2010-06-23 13:34:40 +02:00
|
|
|
--echo #
|
|
|
|
--echo # Bug #48067: A temp table with the same name as an existing table,
|
|
|
|
--echo # makes drop database fail.
|
|
|
|
--echo #
|
|
|
|
--disable_warnings
|
|
|
|
DROP TEMPORARY TABLE IF EXISTS bug48067.t1;
|
|
|
|
DROP DATABASE IF EXISTS bug48067;
|
|
|
|
--enable_warnings
|
|
|
|
CREATE DATABASE bug48067;
|
|
|
|
CREATE TABLE bug48067.t1 (c1 int);
|
|
|
|
INSERT INTO bug48067.t1 values (1);
|
|
|
|
CREATE TEMPORARY TABLE bug48067.t1 (c1 int);
|
|
|
|
DROP DATABASE bug48067;
|
|
|
|
DROP TEMPORARY table bug48067.t1;
|
|
|
|
|
2008-03-28 16:16:52 +01:00
|
|
|
--echo End of 5.1 tests
|
2013-09-20 11:12:53 +02:00
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Test that admin statements work for temporary tables.
|
|
|
|
--echo #
|
|
|
|
--disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1,t2;
|
|
|
|
--enable_warnings
|
|
|
|
CREATE TEMPORARY TABLE t1(a INT);
|
|
|
|
CREATE TEMPORARY TABLE t2(b INT);
|
|
|
|
CREATE TEMPORARY TABLE t3(c INT);
|
|
|
|
|
|
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
|
|
INSERT INTO t2 VALUES (11), (12), (13);
|
|
|
|
INSERT INTO t3 VALUES (101), (102), (103);
|
|
|
|
|
|
|
|
ANALYZE TABLE t1, t2, t3;
|
|
|
|
|
|
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
|
|
INSERT INTO t2 VALUES (11), (12), (13);
|
|
|
|
INSERT INTO t3 VALUES (101), (102), (103);
|
|
|
|
|
|
|
|
CHECK TABLE t1, t2, t3;
|
|
|
|
|
|
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
|
|
INSERT INTO t2 VALUES (11), (12), (13);
|
|
|
|
INSERT INTO t3 VALUES (101), (102), (103);
|
|
|
|
|
|
|
|
--replace_column 2 xxx
|
|
|
|
CHECKSUM TABLE t1, t2, t3;
|
|
|
|
|
|
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
|
|
INSERT INTO t2 VALUES (11), (12), (13);
|
|
|
|
INSERT INTO t3 VALUES (101), (102), (103);
|
|
|
|
|
|
|
|
OPTIMIZE TABLE t1, t2, t3;
|
|
|
|
|
|
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
|
|
INSERT INTO t2 VALUES (11), (12), (13);
|
|
|
|
INSERT INTO t3 VALUES (101), (102), (103);
|
|
|
|
|
|
|
|
REPAIR TABLE t1, t2, t3;
|
|
|
|
|
|
|
|
DROP TABLES t1, t2, t3;
|
2015-06-19 19:46:12 +02:00
|
|
|
|
2016-07-18 09:50:08 +02:00
|
|
|
CREATE TEMPORARY TABLE t1 (a int);
|
|
|
|
RENAME TABLE t1 TO t2;
|
|
|
|
DROP TABLE t2;
|
2016-08-25 12:40:09 +02:00
|
|
|
|
2015-06-19 19:46:12 +02:00
|
|
|
#
|
|
|
|
# CREATE TEMPORARY TEMPORARY TABLE
|
|
|
|
#
|
|
|
|
--error ER_PARSE_ERROR
|
|
|
|
create temporary temporary table t1 (a int);
|
2015-06-19 20:58:26 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# MDEV-7832 Add status variables to track CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE
|
|
|
|
#
|
|
|
|
flush status;
|
|
|
|
create table t1 (a int);
|
|
|
|
create temporary table t2 (a int);
|
|
|
|
create temporary table t3 (a int);
|
|
|
|
drop table t1;
|
|
|
|
drop table t2;
|
|
|
|
drop temporary table t3;
|
|
|
|
show status like 'com_create%table';
|
|
|
|
show status like 'com_drop%table';
|
2016-06-10 20:54:24 +02:00
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Some more generic temporary table tests
|
|
|
|
--echo # added during MDEV-5535.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
--disable_warnings
|
|
|
|
DROP DATABASE IF EXISTS temp_db;
|
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
CREATE DATABASE temp_db;
|
|
|
|
USE temp_db;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # SHOW TABLES do not list temporary tables.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TEMPORARY TABLE temp_t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO temp_t1 VALUES(1);
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
SHOW TABLES;
|
|
|
|
DROP TABLE temp_t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create and drop a temporary table.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TEMPORARY TABLE temp_t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO temp_t1 VALUES(1);
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
DROP TABLE temp_t1;
|
|
|
|
--error ER_NO_SUCH_TABLE
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create a temporary table and base table with same name and DROP TABLE.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TABLE t1(c1 VARCHAR(20)) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES("BASE TABLE");
|
|
|
|
# Temporary table shadows the base table with the same name.
|
|
|
|
CREATE TEMPORARY TABLE t1(c1 VARCHAR(20)) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES("TEMPORARY TABLE");
|
|
|
|
SELECT * FROM t1;
|
|
|
|
# Only temporary table should get dropped.
|
|
|
|
DROP TABLE t1;
|
|
|
|
SELECT * FROM t1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
--error ER_NO_SUCH_TABLE
|
|
|
|
SELECT * FROM t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create a temporary table and base table with same name and DROP TEMPORARY
|
|
|
|
--echo # TABLE.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TABLE t1(c1 VARCHAR(20)) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES("BASE TABLE");
|
|
|
|
# Temporary table shadows the base table with the same name.
|
|
|
|
CREATE TEMPORARY TABLE t1(c1 VARCHAR(20)) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES("TEMPORARY TABLE");
|
|
|
|
SELECT * FROM t1;
|
|
|
|
# Only temporary table should get dropped.
|
|
|
|
DROP TEMPORARY TABLE t1;
|
|
|
|
SELECT * FROM t1;
|
|
|
|
--error ER_BAD_TABLE_ERROR
|
|
|
|
DROP TEMPORARY TABLE t1;
|
|
|
|
SELECT * FROM t1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create a temporary table and drop its parent database.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
USE temp_db;
|
|
|
|
CREATE TEMPORARY TABLE temp_t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO temp_t1 VALUES (1);
|
|
|
|
# Drop database
|
|
|
|
DROP DATABASE temp_db;
|
|
|
|
CREATE DATABASE temp_db;
|
|
|
|
USE temp_db;
|
|
|
|
# Temporary tables are not physically tied to schemas
|
|
|
|
DROP TEMPORARY TABLE temp_t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Similar to above, but this time with a base table with same name.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
USE temp_db;
|
|
|
|
CREATE TABLE t1(i INT)ENGINE=INNODB;
|
|
|
|
CREATE TEMPORARY TABLE t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
# Drop database
|
|
|
|
DROP DATABASE temp_db;
|
|
|
|
CREATE DATABASE temp_db;
|
|
|
|
USE temp_db;
|
|
|
|
# Temporary tables are not physically tied to schemas
|
|
|
|
DROP TEMPORARY TABLE t1;
|
|
|
|
--error ER_BAD_TABLE_ERROR
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create a temporary table within a function.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
USE temp_db;
|
|
|
|
delimiter |;
|
|
|
|
CREATE FUNCTION f1() RETURNS INT
|
|
|
|
BEGIN
|
|
|
|
DROP TEMPORARY TABLE IF EXISTS temp_t1;
|
|
|
|
CREATE TEMPORARY TABLE temp_t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO `temp_t1` VALUES(1);
|
|
|
|
RETURN (SELECT COUNT(*) FROM temp_t1);
|
|
|
|
END|
|
|
|
|
delimiter ;|
|
|
|
|
|
|
|
|
SELECT f1();
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
|
|
|
|
DROP TABLE temp_t1;
|
|
|
|
CREATE TEMPORARY TABLE `temp_t1`(i INT) ENGINE=INNODB;
|
|
|
|
SELECT f1();
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
DROP FUNCTION f1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create and drop a temporary table within a function.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
delimiter |;
|
|
|
|
--error ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG
|
|
|
|
CREATE FUNCTION f2() RETURNS INT
|
|
|
|
BEGIN
|
|
|
|
DROP TEMPORARY TABLE IF EXISTS temp_t1;
|
|
|
|
CREATE TEMPORARY TABLE temp_t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO temp_t1 VALUES(1);
|
|
|
|
DROP TABLE temp_t1;
|
|
|
|
RETURN 0;
|
|
|
|
END|
|
|
|
|
|
|
|
|
CREATE FUNCTION f2() RETURNS INT
|
|
|
|
BEGIN
|
|
|
|
DROP TEMPORARY TABLE IF EXISTS temp_t1;
|
|
|
|
CREATE TEMPORARY TABLE temp_t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO temp_t1 VALUES(1);
|
|
|
|
DROP TEMPORARY TABLE temp_t1;
|
|
|
|
RETURN 0;
|
|
|
|
END|
|
|
|
|
delimiter ;|
|
|
|
|
SELECT f2();
|
|
|
|
DROP FUNCTION f2;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create a temporary table within a function and select it from another
|
|
|
|
--echo # function.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
delimiter |;
|
|
|
|
CREATE FUNCTION f2() RETURNS INT
|
|
|
|
BEGIN
|
|
|
|
DROP TEMPORARY TABLE IF EXISTS temp_t1;
|
|
|
|
CREATE TEMPORARY TABLE temp_t1 (i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO temp_t1 VALUES (1);
|
|
|
|
RETURN f2_1();
|
|
|
|
END|
|
|
|
|
|
|
|
|
CREATE FUNCTION f2_1() RETURNS INT
|
|
|
|
RETURN (SELECT COUNT(*) FROM temp_t1)|
|
|
|
|
delimiter ;|
|
|
|
|
|
|
|
|
SELECT f2();
|
|
|
|
DROP TEMPORARY TABLE temp_t1;
|
|
|
|
DROP FUNCTION f2;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create temporary table like base table.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TABLE t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES(1);
|
|
|
|
CREATE TEMPORARY TABLE temp_t1 LIKE t1;
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
--error ER_NONUNIQ_TABLE
|
|
|
|
CREATE TEMPORARY TABLE t1 LIKE t1;
|
|
|
|
DROP TABLE temp_t1, t1;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Create temporary table as base table.
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TABLE t1(i INT) ENGINE=INNODB;
|
|
|
|
INSERT INTO t1 VALUES(1);
|
|
|
|
CREATE TEMPORARY TABLE temp_t1 AS SELECT * FROM t1;
|
|
|
|
SELECT * FROM temp_t1;
|
|
|
|
DROP TABLE temp_t1, t1;
|
|
|
|
|
2016-08-08 23:26:06 +02:00
|
|
|
--echo #
|
|
|
|
--echo # ALTER TABLE RENAME & ENABLE/DISABLE KEYS (shortcuts)
|
|
|
|
--echo #
|
|
|
|
CREATE TEMPORARY TABLE t1(i INT PRIMARY KEY) ENGINE=MYISAM;
|
|
|
|
INSERT INTO t1 VALUES(1);
|
|
|
|
SELECT COUNT(*)=1 FROM t1;
|
|
|
|
|
|
|
|
ALTER TABLE t1 RENAME t2;
|
|
|
|
SELECT COUNT(*)=1 FROM t2;
|
|
|
|
ALTER TABLE t2 RENAME t1;
|
|
|
|
|
|
|
|
ALTER TABLE t1 DISABLE KEYS;
|
|
|
|
ALTER TABLE t1 ENABLE KEYS;
|
|
|
|
|
|
|
|
# LOCK TABLES is ignored for temporary tables.
|
|
|
|
LOCK TABLES t1 WRITE;
|
|
|
|
ALTER TABLE t1 RENAME t2;
|
|
|
|
SELECT COUNT(*)=1 FROM t2;
|
|
|
|
ALTER TABLE t2 RENAME t1;
|
|
|
|
ALTER TABLE t1 DISABLE KEYS;
|
|
|
|
ALTER TABLE t1 ENABLE KEYS;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
LOCK TABLES t1 READ;
|
|
|
|
ALTER TABLE t1 RENAME t2;
|
|
|
|
SELECT COUNT(*)=1 FROM t2;
|
|
|
|
ALTER TABLE t2 RENAME t1;
|
|
|
|
ALTER TABLE t1 DISABLE KEYS;
|
|
|
|
ALTER TABLE t1 ENABLE KEYS;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
FLUSH TABLES WITH READ LOCK;
|
|
|
|
ALTER TABLE t1 RENAME t2;
|
|
|
|
SELECT COUNT(*)=1 FROM t2;
|
|
|
|
ALTER TABLE t2 RENAME t1;
|
|
|
|
ALTER TABLE t1 DISABLE KEYS;
|
|
|
|
ALTER TABLE t1 ENABLE KEYS;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
ALTER TABLE t1 RENAME t2, LOCK SHARED;
|
|
|
|
ALTER TABLE t2 RENAME t1, LOCK EXCLUSIVE;
|
|
|
|
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
2016-11-21 23:14:14 +01:00
|
|
|
--echo #
|
|
|
|
--echo # MDEV-10792: Assertion `thd->mdl_context.is_lock_owner
|
|
|
|
--echo # (MDL_key::TABLE, table->db, table->table_name, MDL_SHARED)'
|
|
|
|
--echo # failed in mysql_rm_table_no_locks
|
|
|
|
--echo #
|
|
|
|
CREATE TEMPORARY TABLE t1 (i INT);
|
|
|
|
--error ER_BAD_TABLE_ERROR
|
|
|
|
DROP TABLE nonexisting_table, t1;
|
|
|
|
|
2016-06-10 20:54:24 +02:00
|
|
|
--echo # Cleanup
|
|
|
|
DROP DATABASE temp_db;
|
2018-09-12 14:36:45 +02:00
|
|
|
USE test;
|
2016-06-10 20:54:24 +02:00
|
|
|
|
2018-09-12 14:36:45 +02:00
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # MDEV-17167 - InnoDB: Failing assertion: table->get_ref_count() == 0
|
|
|
|
--echo # upon truncating a temporary table
|
|
|
|
--echo #
|
|
|
|
CREATE TEMPORARY TABLE t1(a INT) ENGINE=InnoDB;
|
|
|
|
SELECT * FROM t1 AS t1a1, t1 AS t2a2;
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
|
|
|
|
LOCK TABLES t1 WRITE;
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
SELECT * FROM t1;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
LOCK TABLES t1 AS t1a1 WRITE, t1 AS t1a2 WRITE;
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
SELECT * FROM t1 AS t1a1, t1 AS t1a2;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
CREATE TABLE t2(a INT) ENGINE=InnoDB;
|
|
|
|
LOCK TABLES t2 WRITE;
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
UNLOCK TABLES;
|
|
|
|
|
|
|
|
DROP TABLE t1, t2;
|
2019-05-14 14:29:24 +02:00
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # MDEV-19449 1030: Got error 168 "Unknown (generic) error from engine"
|
|
|
|
--echo # for valid TRUNCATE (temporary) TABLE
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
CREATE TEMPORARY TABLE t1 (col1 BIGINT) ENGINE = InnoDB;
|
|
|
|
--error ER_BAD_FIELD_ERROR
|
|
|
|
INSERT INTO t1 (no_such_col) SELECT * FROM t1;
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
--error ER_BAD_FIELD_ERROR
|
|
|
|
ALTER TABLE t1 CHANGE no_such_col1 col1 BIGINT NULL;
|
|
|
|
# This would wrongly try to re-truncate the old copy of the table that
|
|
|
|
# was not dropped during the first TRUNCATE due to extra table handles.
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
DROP TEMPORARY TABLE t1;
|