Move to i_s / p_s and add user info (not quite complete)
[pstop.git] / performance_schema / ps_table / ps_table.go
diff --git a/performance_schema/ps_table/ps_table.go b/performance_schema/ps_table/ps_table.go
deleted file mode 100644 (file)
index e16d4b7..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// This file contains the library routines for managing the
-// table_lock_waits_summary_by_table table.
-package ps_table
-
-import (
-       "database/sql"
-       "time"
-)
-
-// a table of rows
-type Tabler interface {
-       Collect(dbh *sql.DB)
-       SyncReferenceValues()
-       Headings() string
-       RowContent(max_rows int) []string
-       TotalRowContent() string
-       EmptyRowContent() string
-       Description() string
-       SetNow()
-       Last() time.Time
-       SetWantRelativeStats(want_relative_stats bool)
-}