mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
78e828d32f
Ensure that ccache is also used for C programs mysql: Ensure that 'delimiter' works the same way in batch mode as in normal mode mysqldump: Change to use ;; (instead of //) as a stored procedure/trigger delimiter Fixed test cases by adding missing DROP's and rename views to be of type 'v#' Removed MY_UNIX_PATH from fn_format() Removed current_db_used from TABLE_LIST Removed usage of 'current_thd' in Item_splocal Removed some compiler warnings A bit faster longlong2str code
27 lines
723 B
Text
27 lines
723 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;
|
|
--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;
|