Fix tests

This commit is contained in:
Yarik Briukhovetskyi 2024-12-04 12:11:31 +01:00 committed by GitHub
parent 72e19cbbcb
commit 70fce88bde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,6 +44,10 @@ SELECT length(groupConcat(number)) FROM numbers(100000);
SELECT 'TESTING GroupConcat second argument overload';
TRUNCATE TABLE test_groupConcat;
INSERT INTO test_groupConcat VALUES (0, 95, 'abc', [1, 2, 3]), (1, NULL, 'a', [993, 986, 979, 972]), (2, 123, 'makson95', []);
SELECT groupConcat(',', p_int) FROM test_groupConcat;
SELECT groupConcat('.')(p_string) FROM test_groupConcat;
SELECT groupConcat('/', p_array) FROM test_groupConcat;