Skip to content

Commit 95e9f3c

Browse files
committed
Merge branch 10.3 into 10.4
2 parents 6a3a046 + 7ce5984 commit 95e9f3c

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

mysql-test/suite/funcs_1/r/is_tables_is.result

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,8 @@ TABLE_COLLATION utf8_general_ci
458458
CHECKSUM NULL
459459
CREATE_OPTIONS #CO#
460460
TABLE_COMMENT #TC#
461+
MAX_INDEX_LENGTH #MIL#
462+
TEMPORARY Y
461463
user_comment
462464
Separator -----------------------------------------------------
463465
TABLE_CATALOG def
@@ -831,6 +833,8 @@ TABLE_COLLATION utf8_general_ci
831833
CHECKSUM NULL
832834
CREATE_OPTIONS #CO#
833835
TABLE_COMMENT #TC#
836+
MAX_INDEX_LENGTH #MIL#
837+
TEMPORARY Y
834838
user_comment
835839
Separator -----------------------------------------------------
836840
TABLE_CATALOG def
@@ -1570,6 +1574,8 @@ TABLE_COLLATION utf8_general_ci
15701574
CHECKSUM NULL
15711575
CREATE_OPTIONS #CO#
15721576
TABLE_COMMENT #TC#
1577+
MAX_INDEX_LENGTH #MIL#
1578+
TEMPORARY Y
15731579
user_comment
15741580
Separator -----------------------------------------------------
15751581
TABLE_CATALOG def
@@ -1943,6 +1949,8 @@ TABLE_COLLATION utf8_general_ci
19431949
CHECKSUM NULL
19441950
CREATE_OPTIONS #CO#
19451951
TABLE_COMMENT #TC#
1952+
MAX_INDEX_LENGTH #MIL#
1953+
TEMPORARY Y
19461954
user_comment
19471955
Separator -----------------------------------------------------
19481956
TABLE_CATALOG def

mysql-test/suite/sql_sequence/rebuild.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ INNODB_SYS_INDEXES
4545
INNODB_SYS_TABLES
4646
INNODB_SYS_VIRTUAL
4747
INNODB_TRX
48+
KEYWORDS
4849
KEY_CACHES
4950
KEY_COLUMN_USAGE
5051
OPTIMIZER_TRACE
@@ -60,6 +61,7 @@ SCHEMA_PRIVILEGES
6061
SESSION_STATUS
6162
SESSION_VARIABLES
6263
SPATIAL_REF_SYS
64+
SQL_FUNCTIONS
6365
STATISTICS
6466
SYSTEM_VARIABLES
6567
TABLES

sql/sql_show.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7957,7 +7957,7 @@ int fill_variables(THD *thd, TABLE_LIST *tables, COND *cond)
79577957
int add_symbol_to_table(const char* name, TABLE* table){
79587958
DBUG_ENTER("add_symbol_to_table");
79597959

7960-
uint length= strlen(name);
7960+
size_t length= strlen(name);
79617961

79627962
// If you've added a new SQL keyword longer than KEYWORD_SIZE,
79637963
// please increase the defined max length

0 commit comments

Comments
 (0)