mirror of
https://github.com/MariaDB/server.git
synced 2025-10-19 06:02:12 +02:00

This patch adds for "--ps-protocol" second execution of queries "SELECT". Also in this patch it is added ability to disable/enable (--disable_ps2_protocol/--enable_ps2_protocol) second execution for "--ps-prototocol" in testcases.
11 lines
428 B
Text
11 lines
428 B
Text
#
|
|
# MDEV-9739 Assertion `m_status == DA_ERROR || m_status == DA_OK' failed in Diagnostics_area::message() ; connect.xml* tests fail in buildbot
|
|
#
|
|
|
|
--source have_libxml2.inc
|
|
|
|
create table t1 (i int) engine=Connect table_type=XML option_list='xmlsup=libxml2';
|
|
--disable_ps2_protocol
|
|
select * from information_schema.tables where table_schema='test' and create_options like '%table_type=XML%';
|
|
--enable_ps2_protocol
|
|
drop table t1;
|