File: vcol_utf32.result

package info (click to toggle)
mariadb 1%3A11.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 772,520 kB
  • sloc: ansic: 2,414,714; cpp: 1,791,394; asm: 381,336; perl: 62,905; sh: 49,647; pascal: 40,897; java: 39,363; python: 20,791; yacc: 20,432; sql: 17,907; xml: 12,344; ruby: 8,544; cs: 6,542; makefile: 6,145; ada: 1,879; lex: 1,193; javascript: 996; 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;