mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge remote-tracking branch 'origin/10.3' into 10.4
This commit is contained in:
@ -1563,6 +1563,26 @@ def INET_ATON("255.255.255.255.255.255.255.255") 8 21 20 Y 32928 0 63
|
||||
INET_ATON("255.255.255.255.255.255.255.255")
|
||||
18446744073709551615
|
||||
#
|
||||
# MDEV-8049 name_const() is not consistent about its signess
|
||||
#
|
||||
SELECT 18446744073709551615 AS c1, name_const('a',18446744073709551615) AS c2;
|
||||
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
||||
def c1 8 20 20 N 32929 0 63
|
||||
def c2 8 20 20 Y 32928 0 63
|
||||
c1 c2
|
||||
18446744073709551615 18446744073709551615
|
||||
CREATE TABLE t1 AS SELECT 18446744073709551615 AS c1, name_const('a',18446744073709551615) AS c2;
|
||||
SHOW CREATE TABLE t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
`c1` bigint(20) unsigned NOT NULL,
|
||||
`c2` bigint(20) unsigned DEFAULT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
SELECT * FROM t1;
|
||||
c1 c2
|
||||
18446744073709551615 18446744073709551615
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# End of 10.3 tests
|
||||
#
|
||||
#
|
||||
|
Reference in New Issue
Block a user