mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
Merge bb-10.2-ext into 10.3
This commit is contained in:
commit
2ba487cfe8
67 changed files with 550 additions and 204 deletions
|
|
@ -12,40 +12,40 @@
|
|||
@@ -52,14 +52,14 @@
|
||||
SET sql_mode = '<INITIAL_SQL_MODE>';
|
||||
SHOW TABLE STATUS FROM test LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 <STORAGE_ENGINE> # # # # # # # # 6 # # # # # # #
|
||||
+t1 <STORAGE_ENGINE> # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 <STORAGE_ENGINE> # # # # # # # # 6 # # # # # # # # N
|
||||
+t1 <STORAGE_ENGINE> # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (a,b) VALUES (6,'g'),(7,'h');
|
||||
SELECT LAST_INSERT_ID();
|
||||
LAST_INSERT_ID()
|
||||
5
|
||||
SHOW TABLE STATUS FROM test LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 8 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 8 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (a,b) VALUES (NULL,'i'),(9,'j');
|
||||
SELECT a,b FROM t1 ORDER BY a;
|
||||
a b
|
||||
@@ -78,11 +78,11 @@
|
||||
8
|
||||
SHOW TABLE STATUS FROM test LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 10 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 10 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (a,b) VALUES (20,'k');
|
||||
SHOW TABLE STATUS FROM test LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 21 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 21 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (a,b) VALUES (NULL,'l');
|
||||
SELECT a,b FROM t1 ORDER BY a;
|
||||
a b
|
||||
@@ -103,7 +103,7 @@
|
||||
21
|
||||
SHOW TABLE STATUS FROM test LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 22 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 22 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (a,b) VALUES (-5,'m');
|
||||
SELECT a,b FROM t1 ORDER BY a;
|
||||
a b
|
||||
|
|
|
|||
|
|
@ -3,24 +3,24 @@
|
|||
@@ -9,19 +9,19 @@
|
||||
CREATE TABLE t1 (a <INT_COLUMN> KEY AUTO_INCREMENT, c <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
|
||||
SHOW TABLE STATUS LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 1 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 1 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (c) VALUES ('a'),('b'),('c');
|
||||
SHOW TABLE STATUS LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 4 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 4 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
TRUNCATE TABLE t1;
|
||||
SHOW TABLE STATUS LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 1 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 1 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
INSERT INTO t1 (c) VALUES ('d');
|
||||
SHOW TABLE STATUS LIKE 't1';
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
|
||||
-t1 # # # # # # # # # 2 # # # # # # #
|
||||
+t1 # # # # # # # # # 0 # # # # # # #
|
||||
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment Max_index_length Temporary
|
||||
-t1 # # # # # # # # # 2 # # # # # # # # N
|
||||
+t1 # # # # # # # # # 0 # # # # # # # # N
|
||||
SELECT a,c FROM t1;
|
||||
a c
|
||||
1 d
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue