[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.117.106.247: ~ $
################################################################################
# t/partition_supported_sql_funcs.inc                                          #
#                                                                              #
# Purpose:                                                                     #
#  Tests frame for allowed sql functions                                       #
#                                                                              #
#                                                                              #
#------------------------------------------------------------------------------#
# Original Author: HH                                                          #
# Original Date: 2006-11-22                                                    #
# Change Author: MattiasJ                                                      #
# Change Date: 2008-05-15                                                      #
# Change: Added $max_8_partitions since ndb only capable of 8 partitions       #
#         and $no_reorg_partition since ndb does not support that              #
################################################################################
--echo -------------------------------------------------------------------------
--echo ---  $sqlfunc  in partition with coltype  $coltype
--echo -------------------------------------------------------------------------
--disable_abort_on_error
--disable_warnings
drop table if exists t1 ;
drop table if exists t2 ;
drop table if exists t3 ;
drop table if exists t4 ;
drop table if exists t5 ;
drop table if exists t6 ;
--enable_warnings
--enable_abort_on_error

let $part_t1= partition by range($sqlfunc) 
(partition p0 values less than (15),
 partition p1 values less than maxvalue);

let $part_t2= partition by list($sqlfunc) 
(partition p0 values in (0,1,2,3,4,5,6,7,8,9,10),
 partition p1 values in (11,12,13,14,15,16,17,18,19,20),
 partition p2 values in (21,22,23,24,25,26,27,28,29,30),
 partition p3 values in (31,32,33,34,35,36,37,38,39,40),
 partition p4 values in (41,42,43,44,45,46,47,48,49,50),
 partition p5 values in (51,52,53,54,55,56,57,58,59,60)
);

let $part_t3= partition by hash($sqlfunc);

let $part_t4= partition by range(colint) 
subpartition by hash($sqlfunc) subpartitions 2 
(partition p0 values less than (15),
 partition p1 values less than maxvalue);

let $part_t5= partition by list(colint)
subpartition by hash($sqlfunc) subpartitions 2 
(partition p0 values in (1,2,3,4,5,6,7,8,9,10),
 partition p1 values in (11,12,13,14,15,16,17,18,19,20),
 partition p2 values in (21,22,23,24,25,26,27,28,29,30),
 partition p3 values in (31,32,33,34,35,36,37,38,39,40),
 partition p4 values in (41,42,43,44,45,46,47,48,49,50),
 partition p5 values in (51,52,53,54,55,56,57,58,59,60)
);
if ($max_8_partitions)
{
let $part_t5= partition by list(colint) 
subpartition by hash($sqlfunc) subpartitions 2 
(partition p0 values in (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15),
 partition p1 values in (16,17,18,19,20,21,22,23,24,25,26,27,28,29,30),
 partition p2 values in (31,32,33,34,35,36,37,38,39,40,41,42,43,44,45),
 partition p3 values in (46,47,48,49,50,51,52,53,54,55,56,57,58,59,60)
);
}

let $part_t6= partition by range(colint) 
(partition p0 values less than ($valsqlfunc),
 partition p1 values less than maxvalue);

let $part_t55_altered= partition by list(colint)
subpartition by hash($sqlfunc) subpartitions 5 
(partition p0 values in (1,2,3,4,5,6,7,8,9,10),
 partition p1 values in (11,12,13,14,15,16,17,18,19,20),
 partition p2 values in (21,22,23,24,25,26,27,28,29,30),
 partition p3 values in (31,32,33,34,35,36,37,38,39,40),
 partition p4 values in (41,42,43,44,45,46,47,48,49,50),
 partition p5 values in (51,52,53,54,55,56,57,58,59,60)
);
if ($max_8_partitions)
{
let $part_t55_altered= partition by list(colint) 
subpartition by hash($sqlfunc) subpartitions 4 
(partition p0 values in (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30),
 partition p1 values in (31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60)
);
}
--echo -------------------------------------------------------------------------
--echo ---  Create tables with $sqlfunc
--echo -------------------------------------------------------------------------
eval create table t1 (col1 $coltype) engine=$engine 
$part_t1;

eval create table t2 (col1 $coltype) engine=$engine 
$part_t2;

eval create table t3 (col1 $coltype) engine=$engine 
$part_t3;

eval create table t4 (colint int, col1 $coltype) engine=$engine 
$part_t4;

eval create table t5 (colint int, col1 $coltype) engine=$engine 
$part_t5;

eval create table t6 (colint int, col1 $coltype) engine=$engine 
$part_t6;

--echo -------------------------------------------------------------------------
--echo ---  Access tables with $sqlfunc 
--echo -------------------------------------------------------------------------

eval insert into t1 values ($val1);
eval insert into t1 values ($val2);

eval insert into t2 values ($val1);
eval insert into t2 values ($val2);
eval insert into t2 values ($val3);

eval insert into t3 values ($val1);
eval insert into t3 values ($val2);
eval insert into t3 values ($val3);

--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
eval load data infile '$MYSQLTEST_VARDIR/std_data/parts/$infile' into table t4;
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
eval load data infile '$MYSQLTEST_VARDIR/std_data/parts/$infile' into table t5;
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
eval load data infile '$MYSQLTEST_VARDIR/std_data/parts/$infile' into table t6;

eval select $sqlfunc from t1 order by col1;

select * from t1 order by col1;
select * from t2 order by col1;
select * from t3 order by col1;
select * from t4 order by colint;
select * from t5 order by colint;
select * from t6 order by colint;

if ($do_long_tests)
{
	eval update t1 set col1=$val4 where col1=$val1;
	eval update t2 set col1=$val4 where col1=$val1;
	eval update t3 set col1=$val4 where col1=$val1;
	eval update t4 set col1=$val4 where col1=$val1;
	eval update t5 set col1=$val4 where col1=$val1;
	eval update t6 set col1=$val4 where col1=$val1;

	select * from t1 order by col1;
	select * from t2 order by col1;
	select * from t3 order by col1;
	select * from t4 order by colint;
	select * from t5 order by colint;
	select * from t6 order by colint;
}

--echo -------------------------------------------------------------------------
--echo ---  Alter tables with $sqlfunc
--echo -------------------------------------------------------------------------

--disable_abort_on_error
--disable_warnings
drop table if exists t11 ;
drop table if exists t22 ;
drop table if exists t33 ;
drop table if exists t44 ;
drop table if exists t55 ;
drop table if exists t66 ;
--enable_warnings
--enable_abort_on_error

eval create table t11 engine=$engine as select * from t1;
eval create table t22 engine=$engine as select * from t2;
eval create table t33 engine=$engine as select * from t3;
eval create table t44 engine=$engine as select * from t4;
eval create table t55 engine=$engine as select * from t5;
eval create table t66 engine=$engine as select * from t6;
eval alter table t11
$part_t1;
eval alter table t22
$part_t2;
eval alter table t33
$part_t3;
eval alter table t44
$part_t4;
eval alter table t55
$part_t5;
eval alter table t66
$part_t6;

select * from t11 order by col1;
select * from t22 order by col1;
select * from t33 order by col1;
select * from t44 order by colint;
select * from t55 order by colint;
select * from t66 order by colint;
 
if ($do_long_tests)
{
        --echo ---------------------------
        --echo ---- some alter table begin
        --echo ---------------------------
        if (!$no_reorg_partition)
        {
        eval alter table t11
        reorganize partition p0,p1 into
        (partition s1 values less than maxvalue);
        select * from t11 order by col1;

        eval alter table t11
        reorganize partition s1 into
        (partition p0 values less than (15),
         partition p1 values less than maxvalue);
        select * from t11 order by col1;
        }

eval alter table t55
$part_t55_altered;
        show create table t55; 
	select * from t55 order by colint;

        if (!$no_reorg_partition)
        {
        eval alter table t66
        reorganize partition p0,p1 into
        (partition s1 values less than maxvalue);
        select * from t66 order by colint;

        eval alter table t66
        reorganize partition s1 into
        (partition p0 values less than ($valsqlfunc),
         partition p1 values less than maxvalue);
        select * from t66 order by colint;
	
        eval alter table t66
        reorganize partition p0,p1 into
        (partition s1 values less than maxvalue);
        select * from t66 order by colint;

        eval alter table t66
        reorganize partition s1 into
        (partition p0 values less than ($valsqlfunc),
         partition p1 values less than maxvalue);
        select * from t66 order by colint;
        }

	let $t1=t1;
	let $t2=t2;
	let $t3=t3;
	let $t4=t4;
	let $t5=t5;
	let $t6=t6;
	--source suite/parts/inc/part_supported_sql_funcs_delete.inc

	let $t1=t11;
	let $t2=t22;
	let $t3=t33;
	let $t4=t44;
	let $t5=t55;
	let $t6=t66;
	--source suite/parts/inc/part_supported_sql_funcs_delete.inc
        --echo -------------------------
        --echo ---- some alter table end
        --echo -------------------------
}
--disable_warnings
drop table if exists t1 ;
drop table if exists t2 ;
drop table if exists t3 ;
drop table if exists t4 ;
drop table if exists t5 ;
drop table if exists t6 ;
drop table if exists t11 ;
drop table if exists t22 ;
drop table if exists t33 ;
drop table if exists t44 ;
drop table if exists t55 ;
drop table if exists t66 ;
--enable_warnings


Filemanager

Name Type Size Permission Actions
methods1.inc File 6.92 KB 0644
part_blocked_sql_funcs_main.inc File 8.81 KB 0644
part_exch_drop_tabs.inc File 377 B 0644
part_exch_qa.inc File 4.1 KB 0644
part_exch_qa_1.inc File 1.78 KB 0644
part_exch_qa_13.inc File 7.81 KB 0644
part_exch_qa_4.inc File 1.11 KB 0644
part_exch_qa_5.inc File 2.68 KB 0644
part_exch_qa_7.inc File 1.65 KB 0644
part_exch_qa_8.inc File 2.06 KB 0644
part_exch_tabs.inc File 5.88 KB 0644
part_supported_sql_funcs_delete.inc File 2.67 KB 0644
part_supported_sql_funcs_main.inc File 8.5 KB 0644
partition-dml-1-1-modes.inc File 6.63 KB 0644
partition-dml-1-1.inc File 3.56 KB 0644
partition-dml-1-10.inc File 2.09 KB 0644
partition-dml-1-11.inc File 4.26 KB 0644
partition-dml-1-2.inc File 2.05 KB 0644
partition-dml-1-3.inc File 2.32 KB 0644
partition-dml-1-4.inc File 1.81 KB 0644
partition-dml-1-5.inc File 1.75 KB 0644
partition-dml-1-6.inc File 1.75 KB 0644
partition-dml-1-7.inc File 3.03 KB 0644
partition-dml-1-8.inc File 2.98 KB 0644
partition-dml-1-9.inc File 4.93 KB 0644
partition-dml_cr_tab.inc File 1.11 KB 0644
partition-dml_ins_tab.inc File 2.86 KB 0644
partition.pre File 19.76 KB 0644
partition_10.inc File 2.7 KB 0644
partition_11.inc File 975 B 0644
partition_12.inc File 2.51 KB 0644
partition_20.inc File 2.63 KB 0644
partition_alter1_1.inc File 3.43 KB 0644
partition_alter1_1_2.inc File 3.04 KB 0644
partition_alter1_2.inc File 5.98 KB 0644
partition_alter2_1.inc File 7.09 KB 0644
partition_alter2_2.inc File 7.06 KB 0644
partition_alter3.inc File 8.34 KB 0644
partition_alter4.inc File 6.72 KB 0644
partition_alter_1.inc File 3.97 KB 0644
partition_alter_11.inc File 6.79 KB 0644
partition_alter_13.inc File 6.83 KB 0644
partition_alter_41.inc File 7.21 KB 0644
partition_auto_increment.inc File 24.66 KB 0644
partition_basic.inc File 5.09 KB 0644
partition_basic_symlink.inc File 2.23 KB 0644
partition_bigint.inc File 1.75 KB 0644
partition_binary.inc File 3.2 KB 0644
partition_bit.inc File 3.46 KB 0644
partition_blob.inc File 1.48 KB 0644
partition_blocked_sql_funcs.inc File 5.3 KB 0644
partition_char.inc File 3.08 KB 0644
partition_check.inc File 43.68 KB 0644
partition_check_drop.inc File 3.03 KB 0644
partition_check_read.inc File 3.02 KB 0644
partition_check_read1.inc File 2.97 KB 0644
partition_check_read2.inc File 2.53 KB 0644
partition_cleanup.inc File 1.29 KB 0644
partition_crash.inc File 855 B 0644
partition_crash_add.inc File 1.48 KB 0644
partition_crash_change.inc File 1.87 KB 0644
partition_crash_drop.inc File 1.33 KB 0644
partition_crash_exchange.inc File 1.38 KB 0644
partition_crash_t2.inc File 344 B 0644
partition_date.inc File 2.13 KB 0644
partition_datetime.inc File 2.14 KB 0644
partition_decimal.inc File 2.57 KB 0644
partition_directory.inc File 6.87 KB 0644
partition_double.inc File 1.17 KB 0644
partition_engine.inc File 11.5 KB 0644
partition_enum.inc File 1.88 KB 0644
partition_exchange.inc File 10.16 KB 0644
partition_fail.inc File 987 B 0644
partition_fail_add.inc File 1.46 KB 0644
partition_fail_change.inc File 1.85 KB 0644
partition_fail_drop.inc File 1.31 KB 0644
partition_fail_exchange.inc File 1.29 KB 0644
partition_fail_t2.inc File 777 B 0644
partition_float.inc File 1.2 KB 0644
partition_int.inc File 1.46 KB 0644
partition_key_16col.inc File 1.53 KB 0644
partition_key_32col.inc File 3.63 KB 0644
partition_key_4col.inc File 613 B 0644
partition_key_8col.inc File 1.03 KB 0644
partition_layout.inc File 404 B 0644
partition_layout_check1.inc File 3.38 KB 0644
partition_layout_check2.inc File 3.14 KB 0644
partition_max_parts_hash.inc File 1.53 KB 0644
partition_max_parts_inv.inc File 3.88 KB 0644
partition_max_parts_key.inc File 1.53 KB 0644
partition_max_parts_list.inc File 2.43 KB 0644
partition_max_parts_range.inc File 2.38 KB 0644
partition_max_sub_parts_key_list.inc File 2.55 KB 0644
partition_max_sub_parts_key_range.inc File 2.48 KB 0644
partition_max_sub_parts_list.inc File 2.52 KB 0644
partition_max_sub_parts_range.inc File 2.46 KB 0644
partition_mediumint.inc File 1.44 KB 0644
partition_methods1.inc File 11.42 KB 0644
partition_methods2.inc File 11.01 KB 0644
partition_mgm.inc File 20.82 KB 0644
partition_mgm_crash.inc File 1.81 KB 0644
partition_set.inc File 1.86 KB 0644
partition_smallint.inc File 1.38 KB 0644
partition_supported_sql_funcs.inc File 9.63 KB 0644
partition_syntax.inc File 27.68 KB 0644
partition_syntax_1.inc File 3.69 KB 0644
partition_syntax_2.inc File 1.82 KB 0644
partition_text.inc File 1.33 KB 0644
partition_time.inc File 2.08 KB 0644
partition_timestamp.inc File 2.61 KB 0644
partition_tinyint.inc File 1.33 KB 0644
partition_trigg1.inc File 4.56 KB 0644
partition_trigg2.inc File 2.36 KB 0644
partition_trigg3.inc File 3.22 KB 0644
partition_value.inc File 7.25 KB 0644
partition_varbinary.inc File 3.02 KB 0644
partition_varchar.inc File 3 KB 0644
partition_year.inc File 958 B 0644
rpl-partition-dml-1-1.inc File 2.5 KB 0644