From cc02193d696897dcbeca83601cb0d7a9c1d90992 Mon Sep 17 00:00:00 2001 From: Simon J Mudd Date: Tue, 24 Feb 2015 08:13:13 +0100 Subject: [PATCH] Add a check for performance_schema.events_stages_summary_global_by_event_name existing --- app/app.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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", -- 2.7.4