mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
12e5d5b6be
Bug#31610 Remove outdated and redundant tests: partition_02myisam partition_03ndb Bug#32405 testsuite parts: partition_char_myisam wrong content and cleanup of testsuite - remove/correct wrong comments - remove workarounds for fixed bugs - replace error numbers with error names - exclude subtests from execution which fail now because of new limitations for partitioning functions - remove code for the no more intended dual use fast test in regression tests/slow test in testsuite - analyze and fix problems with partition_char_innodb - fix problems caused by last change of error numbers - Introduce error name to error number mapping which makes maintenance after next error renumbering easier
75 lines
2.4 KiB
PHP
75 lines
2.4 KiB
PHP
################################################################################
|
|
# inc/partition_check_read2.inc #
|
|
# #
|
|
# Purpose: #
|
|
# Read rows from table t1 in different ways #
|
|
# This routine is only useful for the partition_<feature>_<engine> tests. #
|
|
# #
|
|
#------------------------------------------------------------------------------#
|
|
# Original Author: mleich #
|
|
# Original Date: 2006-04-11 #
|
|
# Change Author: #
|
|
# Change Date: #
|
|
# Change: #
|
|
################################################################################
|
|
|
|
## EXPLAIN PARTITIONS SELECT for one single row
|
|
EXPLAIN PARTITIONS SELECT COUNT(*) <> 1 FROM t1 WHERE f_int1 = 3;
|
|
|
|
## Check SELECT for one single row
|
|
let $success= 1;
|
|
if ($no_debug)
|
|
{
|
|
--disable_query_log
|
|
}
|
|
SELECT COUNT(*) <> 1 INTO @aux FROM t1 WHERE f_int1 = 3;
|
|
--enable_query_log
|
|
let $run= `SELECT @aux`;
|
|
if ($run)
|
|
{
|
|
--echo # Unexpected result on SELECT
|
|
eval SELECT COUNT(*) <> 1 FROM t1 WHERE f_int1 = 3;
|
|
let $success= 0;
|
|
}
|
|
--echo # check read single success: $success
|
|
|
|
## Read all existing records in one step
|
|
let $success= 1;
|
|
if ($no_debug)
|
|
{
|
|
--disable_query_log
|
|
}
|
|
eval SELECT COUNT(*) <> @max_row INTO @aux FROM t1;
|
|
--enable_query_log
|
|
let $run= `SELECT @aux`;
|
|
if ($run)
|
|
{
|
|
--echo # Unexpected result on SELECT
|
|
eval SELECT COUNT(*) <> @max_row FROM t1;
|
|
let $success= 0;
|
|
}
|
|
--echo # check read all success: $success
|
|
|
|
## Read all existing records row by row
|
|
let $success= 1;
|
|
let $num= `SELECT @max_row`;
|
|
while ($num)
|
|
{
|
|
if ($no_debug)
|
|
{
|
|
--disable_query_log
|
|
}
|
|
eval SELECT COUNT(*) <> 1 INTO @aux FROM t1
|
|
WHERE f_int1 = 3;
|
|
--enable_query_log
|
|
let $run= `SELECT @aux`;
|
|
if ($run)
|
|
{
|
|
--echo # Unexpected result on SELECT
|
|
eval SELECT COUNT(*) <> 1 FROM t1
|
|
WHERE f_int1 = 3;
|
|
let $success= 0;
|
|
}
|
|
dec $num;
|
|
}
|
|
--echo # check read row by row success: $success
|