From: Simon J Mudd Date: Tue, 24 Feb 2015 07:13:13 +0000 (+0100) Subject: Add a check for performance_schema.events_stages_summary_global_by_event_name existing X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=cc02193d696897dcbeca83601cb0d7a9c1d90992;p=pstop.git Add a check for performance_schema.events_stages_summary_global_by_event_name existing --- diff --git a/app/app.go b/app/app.go index ed36f0c..5b280ad 100644 --- a/app/app.go +++ b/app/app.go @@ -1,6 +1,6 @@ -// lib - library routines for pstop. +// app - pstop application package // -// this file contains the library routines related to the stored state in pstop. +// This file contains the library routines related to running the app. package app import ( @@ -589,6 +589,7 @@ func (app *App) Run() { // be found. func (app *App) validate_mysql_version() error { var tables = [...]string{ + "performance_schema.events_stages_summary_global_by_event_name", "performance_schema.events_waits_summary_global_by_event_name", "performance_schema.file_summary_by_instance", "performance_schema.table_io_waits_summary_by_table",