config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/funcs_1/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/funcs_1/t/myisam_views-big.test

#### suite/funcs_1/t/myisam_views.test
# Skiping this test from Valgrind execution as per Bug-14627884
--source include/not_valgrind.inc

# because of a pair of slow Solaris Sparc machines in pb2,
# this test is marked as big:
--source include/big_test.inc

# MyISAM tables should be used
#
# Set $engine_type
SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
--source include/have_myisam.inc
let $engine_type= myisam;

# Create some objects needed in many testcases
USE test;
--source suite/funcs_1/include/myisam_tb2.inc
--disable_warnings
DROP DATABASE IF EXISTS test1;
--enable_warnings
CREATE DATABASE test1;
USE test1;
--source suite/funcs_1/include/myisam_tb2.inc
USE test;

let $message= Attention: The nesting level @max_level in Testcase 3.3.1.A6
              (Complicated nested VIEWs) has to be limited to 20 because of
              MyISAM(only) performance issues Bug#11948;
--source include/show_msg80.inc
SET @limit1 = 20;
--source suite/funcs_1/views/views_master.inc

DROP DATABASE test1;
DROP TABLE test.tb2;


Man Man