mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +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
77 lines
1.7 KiB
Text
77 lines
1.7 KiB
Text
DROP TABLE IF EXISTS t1,t2;
|
|
CREATE TABLE t1 (a int);
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
CREATE TABLE t2 (a int, b int);
|
|
show tables;
|
|
Tables_in_test
|
|
t1
|
|
t2
|
|
select "--------------------" as "";
|
|
|
|
--------------------
|
|
Database: test
|
|
+--------+
|
|
| Tables |
|
|
+--------+
|
|
| t1 |
|
|
| t2 |
|
|
+--------+
|
|
select "---- -v ------------" as "";
|
|
|
|
---- -v ------------
|
|
Database: test
|
|
+--------+----------+
|
|
| Tables | Columns |
|
|
+--------+----------+
|
|
| t1 | 1 |
|
|
| t2 | 2 |
|
|
+--------+----------+
|
|
2 rows in set.
|
|
|
|
select "---- -v -v ---------" as "";
|
|
|
|
---- -v -v ---------
|
|
Database: test
|
|
+--------+----------+------------+
|
|
| Tables | Columns | Total Rows |
|
|
+--------+----------+------------+
|
|
| t1 | 1 | 3 |
|
|
| t2 | 2 | 0 |
|
|
+--------+----------+------------+
|
|
2 rows in set.
|
|
|
|
select "----- -t -----------" as "";
|
|
|
|
----- -t -----------
|
|
Database: test
|
|
+--------+------------+
|
|
| Tables | table_type |
|
|
+--------+------------+
|
|
| t1 | BASE TABLE |
|
|
| t2 | BASE TABLE |
|
|
+--------+------------+
|
|
select "---- -v -t ---------" as "";
|
|
|
|
---- -v -t ---------
|
|
Database: test
|
|
+--------+------------+----------+
|
|
| Tables | table_type | Columns |
|
|
+--------+------------+----------+
|
|
| t1 | BASE TABLE | 1 |
|
|
| t2 | BASE TABLE | 2 |
|
|
+--------+------------+----------+
|
|
2 rows in set.
|
|
|
|
select "---- -v -v -t ------" as "";
|
|
|
|
---- -v -v -t ------
|
|
Database: test
|
|
+--------+------------+----------+------------+
|
|
| Tables | table_type | Columns | Total Rows |
|
|
+--------+------------+----------+------------+
|
|
| t1 | BASE TABLE | 1 | 3 |
|
|
| t2 | BASE TABLE | 2 | 0 |
|
|
+--------+------------+----------+------------+
|
|
2 rows in set.
|
|
|
|
DROP TABLE t1, t2;
|