File: vcol_utf32.result

package info (click to toggle)
mariadb 1%3A11.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 765,428 kB
  • sloc: ansic: 2,382,827; cpp: 1,803,532; asm: 378,315; perl: 63,176; sh: 46,496; pascal: 40,776; java: 39,363; yacc: 20,428; python: 19,506; sql: 17,864; xml: 12,463; ruby: 8,544; makefile: 6,059; cs: 5,855; ada: 1,700; lex: 1,193; javascript: 1,039; objc: 80; tcl: 73; awk: 46; php: 22
file content (37 lines) | stat: -rw-r--r-- 2,094 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# MDEV-27966 Assertion `fixed()' failed and Assertion `fixed == 1' failed, both in Item_func_concat::val_str on SELECT after INSERT with collation utf32_bin on utf8_bin table
#
SET NAMES utf8mb3;
SET sql_mode='';
CREATE TABLE t (c1 INT,c2 CHAR AS (CONCAT ('',DAYNAME ('')))) COLLATE utf8_bin ENGINE=InnoDB;
Warnings:
Warning	1286	Unknown storage engine 'InnoDB'
Warning	1266	Using storage engine MyISAM for table 't'
INSERT INTO t VALUES (0,0),(0,0),(0,0),(0,0),(0,0),(0,0),(0,0),(0,0),(0,0);
Warnings:
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
Warning	1906	The value specified for generated column 'c2' in table 't' has been ignored
Warning	1292	Incorrect datetime value: ''
SET collation_connection='utf32_bin';
INSERT INTO t VALUES (0,0),(0,0),(0,0),(0,0),(0,0),(0,0),(0,0),(0,0),(0,0);
ERROR HY000: Illegal mix of collations (utf8mb3_bin,COERCIBLE) and (utf32_bin,COERCIBLE) for operation 'concat'
SELECT * FROM t;
ERROR HY000: Illegal mix of collations (utf8mb3_bin,COERCIBLE) and (utf32_bin,COERCIBLE) for operation 'concat'
DROP TABLE t;
SET sql_mode=DEFAULT;
SET NAMES utf8mb3;