[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.225.55.42: ~ $
drop table if exists t1, t2, t3, t4, t5;
set GLOBAL query_cache_type=on;
set GLOBAL query_cache_size=1355776;
set GLOBAL ndb_cache_check_time=100;
reset query cache;
flush status;
CREATE TABLE t1 (
pk int not null primary key,
a1 int,
b1 int not null,
c1 varchar(20)
) ENGINE=ndb;
CREATE TABLE t2 (
pk int not null primary key,
a2 int,
b2 int not null
) ENGINE=ndb;
CREATE TABLE t3 (
pk int not null primary key,
a3 int,
b3 int not null,
c3 int not null,
d3 varchar(20)
) ENGINE=ndb;
CREATE TABLE t4 (
a4 int,
b4 int not null,
c4 char(20)
) ENGINE=ndbcluster;
CREATE TABLE t5 (
pk int not null primary key,
a5 int,
b5 int not null,
c5 varchar(255)
) ENGINE=ndbcluster;
insert into t1 value (1, 2, 3, 'First row');
insert into t2 value (1, 2, 3);
insert into t3 value (1, 2, 3, 4, '3 - First row');
insert into t4 value (2, 3, '4 - First row');
insert into t5 value (1, 2, 3, '5 - First row');
select * from t1;
pk	a1	b1	c1
1	2	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	1
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	1
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1;
pk	a1	b1	c1
1	2	3	First row
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
update t1 set a1=3 where pk=1;
select * from t1;
pk	a1	b1	c1
1	3	3	First row
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
insert into t1 value (2, 7, 8, 'Second row');
insert into t1 value (4, 5, 6, 'Fourth row');
select * from t1 order by pk desc;
pk	a1	b1	c1
4	5	6	Fourth row
2	7	8	Second row
1	3	3	First row
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	3
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
select * from t1 order by pk desc;
pk	a1	b1	c1
4	5	6	Fourth row
2	7	8	Second row
1	3	3	First row
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	2
select * from t1 where b1=3;
pk	a1	b1	c1
1	3	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	2
select * from t1 where b1=3;
pk	a1	b1	c1
1	3	3	First row
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	3
delete from t1 where c1='Fourth row';
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	0
select * from t1 where b1=3;
pk	a1	b1	c1
1	3	3	First row
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	3
use test;
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	3	3	First row
select * from t1 where b1=3;
pk	a1	b1	c1
1	3	3	First row
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	4
update t1 set a1=4 where b1=3;
use test;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	0
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	4	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	4	3	First row
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	7
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	5
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	4	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	4	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	1
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	7
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	7
select * from t2;
pk	a2	b2
1	2	3
select * from t3;
pk	a3	b3	c3	d3
1	2	3	4	3 - First row
select * from t4;
a4	b4	c4
2	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	2	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
flush status;
begin;
update t1 set a1=5 where pk=1;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	4
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	0
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	4	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	1
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
commit;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	1
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	5	3	First row
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	5	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
flush status;
begin;
update t1 set a1=6 where pk=1;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	4
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	0
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	5	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	5	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	1
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	6	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	6	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	1
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
commit;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	1
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	6	3	First row
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	1
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	6	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	2
flush status;
begin;
insert into t1 set pk=5, a1=6, b1=3, c1="New row";
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	4
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	0
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 where pk=5;
pk	a1	b1	c1
select * from t1 order by pk desc;
pk	a1	b1	c1
2	7	8	Second row
1	6	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	6
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 where pk=5;
pk	a1	b1	c1
5	6	3	New row
select * from t1 where pk=5;
pk	a1	b1	c1
5	6	3	New row
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
2	7	8	Second row
1	6	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
2	7	8	Second row
1	6	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	6
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
commit;
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
2	7	8	Second row
1	6	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	3
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
flush status;
begin;
delete from t1 where pk=2;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	4
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	0
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 where pk=2;
pk	a1	b1	c1
2	7	8	Second row
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
2	7	8	Second row
1	6	3	First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	6
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 where pk=2;
pk	a1	b1	c1
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	6	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	6	3	First row
select * from t1 where pk=2;
pk	a1	b1	c1
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	6
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	2
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
commit;
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	6	3	First row
select * from t1 where pk=2;
pk	a1	b1	c1
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	6
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	4
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
flush status;
begin;
update t1 set a1=9 where pk=1;
update t2 set a2=9 where pk=1;
update t3 set a3=9 where pk=1;
update t4 set a4=9 where a4=2;
update t5 set a5=9 where pk=1;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	0
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	0
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	6	3	First row
select * from t2;
pk	a2	b2
1	2	3
select * from t3;
pk	a3	b3	c3	d3
1	2	3	4	3 - First row
select * from t4;
a4	b4	c4
2	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	2	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	5
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	9	3	First row
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	9	3	First row
select * from t2;
pk	a2	b2
1	9	3
select * from t3;
pk	a3	b3	c3	d3
1	9	3	4	3 - First row
select * from t4;
a4	b4	c4
9	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	9	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	5
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
commit;
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	9	3	First row
select * from t2;
pk	a2	b2
1	9	3
select * from t3;
pk	a3	b3	c3	d3
1	9	3	4	3 - First row
select * from t4;
a4	b4	c4
9	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	9	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	10
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	0
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	9	3	First row
select * from t2;
pk	a2	b2
1	9	3
select * from t3;
pk	a3	b3	c3	d3
1	9	3	4	3 - First row
select * from t4;
a4	b4	c4
9	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	9	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	10
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	5
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	9	3	First row
select * from t2;
pk	a2	b2
1	9	3
select * from t3;
pk	a3	b3	c3	d3
1	9	3	4	3 - First row
select * from t4;
a4	b4	c4
9	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	9	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	10
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	10
select * from t1 order by pk desc;
pk	a1	b1	c1
5	6	3	New row
1	9	3	First row
select * from t2;
pk	a2	b2
1	9	3
select * from t3;
pk	a3	b3	c3	d3
1	9	3	4	3 - First row
select * from t4;
a4	b4	c4
9	3	4 - First row
select * from t5;
pk	a5	b5	c5
1	9	3	5 - First row
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	5
show status like "Qcache_inserts";
Variable_name	Value
Qcache_inserts	10
show status like "Qcache_hits";
Variable_name	Value
Qcache_hits	15
drop table t1, t2, t3, t4, t5;
show status like "Qcache_queries_in_cache";
Variable_name	Value
Qcache_queries_in_cache	0
SET GLOBAL query_cache_size=0;
SET GLOBAL ndb_cache_check_time=0;

Filemanager

Name Type Size Permission Actions
bug36547.result File 455 B 0644
loaddata_autocom_ndb.result File 726 B 0644
ndb_add_partition.result File 5.91 KB 0644
ndb_alter_table.result File 10.88 KB 0644
ndb_alter_table2.result File 685 B 0644
ndb_alter_table3.result File 1.48 KB 0644
ndb_alter_table_backup.result File 1.76 KB 0644
ndb_alter_table_error.result File 648 B 0644
ndb_alter_table_online.result File 26.79 KB 0644
ndb_alter_table_online2.result File 2.62 KB 0644
ndb_alter_table_online_multi.result File 1.98 KB 0644
ndb_auto_increment.result File 9.99 KB 0644
ndb_autoinc.result File 793 B 0644
ndb_basic.result File 29.94 KB 0644
ndb_bitfield.result File 8.26 KB 0644
ndb_blob.result File 22.71 KB 0644
ndb_blob_big.result File 1.24 KB 0644
ndb_blob_partition.result File 9.03 KB 0644
ndb_bug26793.result File 257 B 0644
ndb_bug31477.result File 1.85 KB 0644
ndb_bug31754.result File 262 B 0644
ndb_bulk_delete.result File 1.87 KB 0644
ndb_cache.result File 8.68 KB 0644
ndb_cache2.result File 13.31 KB 0644
ndb_cache_multi.result File 1.67 KB 0644
ndb_cache_multi2.result File 1.68 KB 0644
ndb_cache_trans.result File 6.65 KB 0644
ndb_charset.result File 5.77 KB 0644
ndb_column_properties.result File 15.98 KB 0644
ndb_condition_pushdown.result File 72.29 KB 0644
ndb_config.result File 3.21 KB 0644
ndb_config2.result File 475 B 0644
ndb_create_table.result File 1.02 KB 0644
ndb_cursor.result File 865 B 0644
ndb_database.result File 1.23 KB 0644
ndb_dbug_lock.result File 1.64 KB 0644
ndb_dbug_tc_select.result File 5.98 KB 0644
ndb_dd_alter.result File 27.07 KB 0644
ndb_dd_basic.result File 20.67 KB 0644
ndb_dd_bug12581213.result File 334 B 0644
ndb_dd_ddl.result File 5.56 KB 0644
ndb_dd_disk2memory.result File 12.99 KB 0644
ndb_dd_dump.result File 15.97 KB 0644
ndb_dd_restore_compat.result File 3.61 KB 0644
ndb_dd_sql_features.result File 22.4 KB 0644
ndb_ddl_open_trans.result File 1.36 KB 0644
ndb_disconnect_ddl.result File 281 B 0644
ndb_discover_db.result File 1.55 KB 0644
ndb_dist_priv.result File 4.8 KB 0644
ndb_gis.result File 47.18 KB 0644
ndb_global_schema_lock.result File 3.43 KB 0644
ndb_global_schema_lock_error.result File 1.94 KB 0644
ndb_grant.result File 17.65 KB 0644
ndb_hidden_pk.result File 10.55 KB 0644
ndb_index.result File 13.93 KB 0644
ndb_index_ordered.result File 16.71 KB 0644
ndb_index_stat.result File 14.33 KB 0644
ndb_index_unique.result File 17.43 KB 0644
ndb_insert.result File 36.2 KB 0644
ndb_join_pushdown.result File 274.88 KB 0644
ndb_limit.result File 2.01 KB 0644
ndb_load.result File 2.64 KB 0644
ndb_loaddatalocal.result File 1.39 KB 0644
ndb_lock.result File 4.17 KB 0644
ndb_lock_table.result File 205 B 0644
ndb_mgm.result File 3.55 KB 0644
ndb_minmax.result File 1.47 KB 0644
ndb_multi.result File 3.7 KB 0644
ndb_multi_row.result File 1.33 KB 0644
ndb_native_default_support.result File 47.23 KB 0644
ndb_optimize_table.result File 2 KB 0644
ndb_optimized_node_selection.result File 1017 B 0644
ndb_partition_error.result File 1.41 KB 0644
ndb_partition_error2.result File 150 B 0644
ndb_partition_hash.result File 890 B 0644
ndb_partition_key.result File 8.16 KB 0644
ndb_partition_list.result File 2.31 KB 0644
ndb_partition_range.result File 7.91 KB 0644
ndb_read_multi_range.result File 14.54 KB 0644
ndb_reconnect.result File 560 B 0644
ndb_rename.result File 772 B 0644
ndb_replace.result File 3.64 KB 0644
ndb_restore_compat_downward.result File 132.43 KB 0644
ndb_restore_compat_endianness.result File 10.87 KB 0644
ndb_restore_conv_lossy_charbinary.result File 15.46 KB 0644
ndb_restore_conv_lossy_integral.result File 20.72 KB 0644
ndb_restore_conv_padding.result File 6.14 KB 0644
ndb_restore_conv_promotion.result File 23.26 KB 0644
ndb_restore_discover.result File 540 B 0644
ndb_restore_misc.result File 23.77 KB 0644
ndb_restore_print.result File 9.8 KB 0644
ndb_restore_schema_blobs.result File 6.44 KB 0644
ndb_restore_schema_partitions.result File 13.3 KB 0644
ndb_restore_schema_rewrites.result File 12.22 KB 0644
ndb_restore_schema_subsets.result File 95.9 KB 0644
ndb_restore_schema_tolerance.result File 4.57 KB 0644
ndb_restore_undolog.result File 18.66 KB 0644
ndb_row_count.result File 5.11 KB 0644
ndb_row_format.result File 1.74 KB 0644
ndb_select_count.result File 334 B 0644
ndb_share.result File 9.85 KB 0644
ndb_short_sigs.result File 2.53 KB 0644
ndb_single_user.result File 3.97 KB 0644
ndb_sp.result File 1.1 KB 0644
ndb_sql_allow_batching.result File 918 B 0644
ndb_statistics0.result File 7.78 KB 0644
ndb_statistics1.result File 8.04 KB 0644
ndb_subquery.result File 3.07 KB 0644
ndb_temporary.result File 939 B 0644
ndb_tmp_table_and_DDL.result File 3.11 KB 0644
ndb_transaction.result File 4.62 KB 0644
ndb_trigger.result File 9.38 KB 0644
ndb_truncate.result File 425 B 0644
ndb_types.result File 3.12 KB 0644
ndb_update.result File 2.76 KB 0644
ndb_update_no_read.result File 11.37 KB 0644
ndb_view.result File 597 B 0644
ndbapi.result File 734 B 0644
ndbinfo.result File 12.86 KB 0644
ndbinfo_cache.result File 423 B 0644
ndbinfo_dump.result File 95 B 0644
ps_7ndb.result File 103.12 KB 0644
strict_autoinc_5ndb.result File 651 B 0644