⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
json
/
t
/
View File Name :
json_group_concat_ndb.test
########### suite/json/t/json_group_concat_ndb.test # # Tests group_concat json function using the ndb storage engine # # # # This test copies some tests originally in json.test # ###################################################################### # Set the session storage engine --source include/have_ndb.inc set default_storage_engine=ndb; --source suite/json/inc/json_group_concat.inc # These tests differ between innodb and ndb create table t(j json, c varchar(20)); show create table t; insert into t values (cast('[1,2,3]' as json), '[a,b,c]'); insert into t values (cast(7 as json), '7'), (cast(2 as json), '2'); insert into t values (cast(7 as json), '7'), (cast(2 as json), '2'); select group_concat(j order by j), group_concat(distinct j order by j), group_concat(c order by c) from t; insert into t values (NULL, NULL); # This test is disabled until bug 22353594 is resolved #select group_concat(j order by j), group_concat(distinct j order by j), group_concat(c order by c) from t; drop table t;