43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# The include statement below is a temp one for tests that are yet to
|
|
#be ported to run with InnoDB,
|
|
#but needs to be kept for tests that would need MyISAM in future.
|
|
--source include/force_myisam_default.inc
|
|
|
|
###############################################
|
|
# #
|
|
# Prepared Statements test on NDB tables #
|
|
# #
|
|
###############################################
|
|
|
|
#
|
|
# NOTE: PLEASE SEE ps_1general.test (bottom)
|
|
# BEFORE ADDING NEW TEST CASES HERE !!!
|
|
|
|
use test;
|
|
|
|
--disable_query_log
|
|
set @save_ndb_join_pushdown = @@session.ndb_join_pushdown;
|
|
set ndb_join_pushdown = false;
|
|
--enable_query_log
|
|
|
|
# bug#36342
|
|
-- source include/not_embedded.inc
|
|
|
|
-- source include/have_ndb.inc
|
|
let $type= 'NDB' ;
|
|
-- source include/ps_create.inc
|
|
-- source include/ps_renew.inc
|
|
|
|
-- source include/ps_query.inc
|
|
-- source include/ps_modify.inc
|
|
-- source include/ps_modify1.inc
|
|
-- source include/ps_conv.inc
|
|
|
|
drop table t1, t9;
|
|
|
|
--disable_query_log
|
|
set ndb_join_pushdown = @save_ndb_join_pushdown;
|
|
--enable_query_log
|
|
|
|
# End of 4.1 tests
|