mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -1039,4 +1039,14 @@ count(distinct case when id<=63 then id end)
|
||||
63
|
||||
drop table tb;
|
||||
SET @@tmp_table_size= @tmp_table_size_save;
|
||||
#
|
||||
# MDEV-14695: Assertion `n < m_size' failed in Bounds_checked_array<Element_type>::operator
|
||||
#
|
||||
CREATE TABLE t1 (b1 BIT, b2 BIT, b3 BIT, b4 BIT , b5 BIT, b6 BIT);
|
||||
INSERT INTO t1 VALUES (1,0,0,1,0,1),(0,1,0,0,1,0);
|
||||
SELECT DISTINCT b1+'0', b2+'0', b3+'0', b4+'0', b5+'0', b6 +'0' FROM t1;
|
||||
b1+'0' b2+'0' b3+'0' b4+'0' b5+'0' b6 +'0'
|
||||
1 0 0 1 0 1
|
||||
0 1 0 0 1 0
|
||||
DROP TABLE t1;
|
||||
End of 5.5 tests
|
||||
|
Reference in New Issue
Block a user