Skip to content

Commit

Permalink
infoschema: remove pfs setup_timers (#9217)
Browse files Browse the repository at this point in the history
  • Loading branch information
morgo authored and zimulala committed Feb 12, 2019
1 parent c8554f8 commit 2f9ab60
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions infoschema/perfschema/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ var perfSchemaTables = []string{
tableSetupObjects,
tableSetupInstruments,
tableSetupConsumers,
tableSetupTimers,
tableStmtsCurrent,
tableStmtsHistory,
tableStmtsHistoryLong,
Expand Down Expand Up @@ -76,11 +75,6 @@ const tableSetupConsumers = "CREATE TABLE if not exists performance_schema.setup
"NAME VARCHAR(64) NOT NULL," +
"ENABLED ENUM('YES','NO') NOT NULL);"

// tableSetupTimers contains the column name definitions for table setup_timers, same as MySQL.
const tableSetupTimers = "CREATE TABLE if not exists performance_schema.setup_timers (" +
"NAME VARCHAR(64) NOT NULL," +
"TIMER_NAME ENUM('NANOSECOND','MICROSECOND','MILLISECOND') NOT NULL);"

// tableStmtsCurrent contains the column name definitions for table events_statements_current, same as MySQL.
const tableStmtsCurrent = "CREATE TABLE if not exists performance_schema.events_statements_current (" +
"THREAD_ID BIGINT(20) UNSIGNED NOT NULL," +
Expand Down

0 comments on commit 2f9ab60

Please sign in to comment.