Skip to content

Commit

Permalink
Tests: full test results
Browse files Browse the repository at this point in the history
innodb.innodb-index-online-fk
innodb.instant_alter_debug
innodb.innodb_skip_innodb_is_tables
sys_vars.sysvars_server_notembedded
main.mysqld--help
  • Loading branch information
kevgs authored and midenok committed Nov 13, 2017
1 parent d47dc07 commit 3f79010
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
2 changes: 0 additions & 2 deletions mysql-test/r/mysqld--help.result
Original file line number Diff line number Diff line change
Expand Up @@ -1277,8 +1277,6 @@ The following options may be given as the first argument:
system rows as is on ALTER TABLE; SURVIVE: use DDL
survival feature; DROP: delete historical system rows on
ALTER TABLE
--versioning-asof-timestamp=name
Default AS OF value for versioned queries
--versioning-force Force system versioning for all created tables
--versioning-hide=name
Hide system versioning from being displayed in table
Expand Down
10 changes: 10 additions & 0 deletions mysql-test/suite/innodb/r/innodb-index-online-fk.result
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ SYS_FOREIGN
SYS_FOREIGN_COLS
SYS_TABLESPACES
SYS_VIRTUAL
SYS_VTQ
mysql/innodb_index_stats
mysql/innodb_table_stats
mysql/vtmd_template
test/child
test/parent
INSERT INTO child VALUES(5,4);
Expand Down Expand Up @@ -315,8 +317,10 @@ SYS_FOREIGN
SYS_FOREIGN_COLS
SYS_TABLESPACES
SYS_VIRTUAL
SYS_VTQ
mysql/innodb_index_stats
mysql/innodb_table_stats
mysql/vtmd_template
test/child
test/parent
ALTER TABLE child ADD PRIMARY KEY idx (a3), CHANGE a1 a3 INT,
Expand All @@ -340,8 +344,10 @@ SYS_FOREIGN
SYS_FOREIGN_COLS
SYS_TABLESPACES
SYS_VIRTUAL
SYS_VTQ
mysql/innodb_index_stats
mysql/innodb_table_stats
mysql/vtmd_template
test/child
test/parent
SHOW CREATE TABLE child;
Expand Down Expand Up @@ -376,8 +382,10 @@ SYS_FOREIGN
SYS_FOREIGN_COLS
SYS_TABLESPACES
SYS_VIRTUAL
SYS_VTQ
mysql/innodb_index_stats
mysql/innodb_table_stats
mysql/vtmd_template
test/child
test/parent
SHOW CREATE TABLE child;
Expand Down Expand Up @@ -412,8 +420,10 @@ SYS_FOREIGN
SYS_FOREIGN_COLS
SYS_TABLESPACES
SYS_VIRTUAL
SYS_VTQ
mysql/innodb_index_stats
mysql/innodb_table_stats
mysql/vtmd_template
test/child
test/parent
SHOW CREATE TABLE child;
Expand Down
2 changes: 1 addition & 1 deletion mysql-test/suite/innodb/r/instant_alter_debug.result
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ALTER TABLE t4 ADD COLUMN b INT;
SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS
LEFT JOIN t4 ON (NUMERIC_SCALE = pk);
COUNT(*)
1734
1740
SET DEBUG_SYNC='innodb_inplace_alter_table_enter SIGNAL enter WAIT_FOR delete';
ALTER TABLE t4 ADD COLUMN c INT;
connect dml,localhost,root,,;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
--source include/not_embedded.inc
--source include/have_xtradb.inc

select * from information_schema.innodb_trx;
select * from information_schema.innodb_locks;
Expand Down
20 changes: 10 additions & 10 deletions mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result
Original file line number Diff line number Diff line change
Expand Up @@ -5295,27 +5295,27 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE KEEP
VARIABLE_SCOPE SESSION
VARIABLE_TYPE ENUM
VARIABLE_COMMENT Versioning ALTER TABLE mode
VARIABLE_COMMENT Versioning ALTER TABLE mode. KEEP: leave historical system rows as is on ALTER TABLE; SURVIVE: use DDL survival feature; DROP: delete historical system rows on ALTER TABLE
NUMERIC_MIN_VALUE NULL
NUMERIC_MAX_VALUE NULL
NUMERIC_BLOCK_SIZE NULL
ENUM_VALUE_LIST KEEP,SURVIVE,DROP
READ_ONLY NO
COMMAND_LINE_ARGUMENT OPTIONAL
VARIABLE_NAME VERSIONING_CURRENT_TIMESTAMP
SESSION_VALUE NOW
GLOBAL_VALUE NOW
COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME VERSIONING_ASOF_TIMESTAMP
SESSION_VALUE CURRENT
GLOBAL_VALUE CURRENT
GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE now
DEFAULT_VALUE CURRENT
VARIABLE_SCOPE SESSION
VARIABLE_TYPE VARCHAR
VARIABLE_COMMENT Default AS OF value for versioned tables
VARIABLE_COMMENT Default AS OF value for versioned queries
NUMERIC_MIN_VALUE NULL
NUMERIC_MAX_VALUE NULL
NUMERIC_BLOCK_SIZE NULL
ENUM_VALUE_LIST NULL
ENUM_VALUE_LIST CURRENT,ALL
READ_ONLY NO
COMMAND_LINE_ARGUMENT REQUIRED
COMMAND_LINE_ARGUMENT NULL
VARIABLE_NAME VERSIONING_FORCE
SESSION_VALUE OFF
GLOBAL_VALUE OFF
Expand Down Expand Up @@ -5343,7 +5343,7 @@ NUMERIC_MAX_VALUE NULL
NUMERIC_BLOCK_SIZE NULL
ENUM_VALUE_LIST AUTO,IMPLICIT,FULL,NEVER
READ_ONLY NO
COMMAND_LINE_ARGUMENT OPTIONAL
COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME VERSIONING_INNODB_ALGORITHM_SIMPLE
SESSION_VALUE ON
GLOBAL_VALUE ON
Expand Down
6 changes: 0 additions & 6 deletions sql/handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2435,12 +2435,6 @@ LEX_CSTRING *handler::engine_name()
}


void handler::ha_statistic_increment(ulong SSV::*offset) const
{
(table->in_use->status_var.*offset)++;
}


double handler::keyread_time(uint index, uint ranges, ha_rows rows)
{
/*
Expand Down
1 change: 0 additions & 1 deletion sql/handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -4124,7 +4124,6 @@ class handler :public Sql_alloc
TABLE_SHARE* get_table_share() { return table_share; }
protected:
/* Service methods for use by storage engines. */
void ha_statistic_increment(ulong SSV::*offset) const;
void **ha_data(THD *) const;
THD *ha_thd(void) const;

Expand Down

0 comments on commit 3f79010

Please sign in to comment.