mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
6e22e29de6
- Fixed tests - Optimized new code - Fixed some unlikely core dumps - Better bug fixes for: - #14397 - OPTIMIZE TABLE with an open HANDLER causes a crash - #14850 (ERROR 1062 when a quering a view using a Group By on a column that can be null
27 lines
735 B
Text
27 lines
735 B
Text
# Can't run test of external client with embedded server
|
|
-- source include/not_embedded.inc
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1,t2,test1,test2;
|
|
--enable_warnings
|
|
|
|
#
|
|
## Bug #5036 mysqlshow is missing a column
|
|
#
|
|
CREATE TABLE t1 (a int);
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
CREATE TABLE t2 (a int, b int);
|
|
show tables;
|
|
select "--------------------" as "";
|
|
--exec $MYSQL_SHOW test
|
|
select "---- -v ------------" as "";
|
|
--exec $MYSQL_SHOW test -v
|
|
select "---- -v -v ---------" as "";
|
|
--exec $MYSQL_SHOW test -v -v
|
|
select "----- -t -----------" as "";
|
|
--exec $MYSQL_SHOW test -t
|
|
select "---- -v -t ---------" as "";
|
|
--exec $MYSQL_SHOW test -v -t
|
|
select "---- -v -v -t ------" as "";
|
|
--exec $MYSQL_SHOW test -v -v -t
|
|
DROP TABLE t1, t2;
|