summaryrefslogtreecommitdiff
path: root/plugin/type_uuid/mysql-test/type_uuid/type_uuid_sum.test
blob: 45cdf927210c4854ecb6b4b278cca60e8ec46cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--echo #
--echo # Start of 10.7 tests
--echo #

--echo #
--echo #  MDEV-27015 Assertion `!is_null()' failed in FixedBinTypeBundle<FbtImpl>::Fbt FixedBinTypeBundle<FbtImpl>::Field_fbt::to_fbt()
--echo #

CREATE TABLE t1 (i6 UUID, a1 TIME, a2 VARCHAR(10));
INSERT INTO t1 VALUES ('ffffffff-ffff-ffff-ffff-fffffffffffe','09:43:12','uw'), (uuid(),'00:00:00','a');
SELECT GROUP_CONCAT(IF(a1, i6, a2) ORDER BY 1) FROM t1;
DROP TABLE t1;


--echo #
--echo # End of 10.7 tests
--echo #