aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/archives/patch-profiling.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/archives/patch-profiling.sql')
-rw-r--r--maintenance/archives/patch-profiling.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/maintenance/archives/patch-profiling.sql b/maintenance/archives/patch-profiling.sql
new file mode 100644
index 000000000000..ea9974ce3f76
--- /dev/null
+++ b/maintenance/archives/patch-profiling.sql
@@ -0,0 +1,10 @@
+-- profiling table
+-- This is optional
+
+CREATE TABLE profiling (
+ pf_count integer not null default 0,
+ pf_time float not null default 0,
+ pf_name varchar(255) not null default '',
+ UNIQUE KEY pf_name (pf_name)
+);
+