SQLite compatibility for patch-profiling.sql
authorMax Semenik <maxsem@users.mediawiki.org>
Sat, 23 Apr 2011 09:49:52 +0000 (09:49 +0000)
committerMax Semenik <maxsem@users.mediawiki.org>
Sat, 23 Apr 2011 09:49:52 +0000 (09:49 +0000)
maintenance/archives/patch-profiling.sql

index e748ca3..2966334 100644 (file)
@@ -1,11 +1,12 @@
 -- profiling table
 -- This is optional
 
-CREATE TABLE /*$wgDBprefix*/profiling (
+CREATE TABLE /*_*/profiling (
   pf_count int NOT NULL default 0,
   pf_time float NOT NULL default 0,
   pf_memory float NOT NULL default 0,
   pf_name varchar(255) NOT NULL default '',
-  pf_server varchar(30) NOT NULL default '',
-  UNIQUE KEY pf_name_server (pf_name, pf_server)
+  pf_server varchar(30) NOT NULL default ''
 ) ENGINE=HEAP;
+
+CREATE UNIQUE INDEX /*i*/pf_name_server ON /*_*/profiling (pf_name, pf_server)
\ No newline at end of file