X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=performance_schema%2Fps_table%2Fps_table.go;fp=performance_schema%2Fps_table%2Fps_table.go;h=0000000000000000000000000000000000000000;hb=52d3c00ce729f908f342e10f48818b112dec0130;hp=e16d4b7004db70ef3491e74bc29a86d6358d34d8;hpb=b958730449ac1d927c267373a68b9ae54b72c454;p=pstop.git diff --git a/performance_schema/ps_table/ps_table.go b/performance_schema/ps_table/ps_table.go deleted file mode 100644 index e16d4b7..0000000 --- a/performance_schema/ps_table/ps_table.go +++ /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) -}