repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge "Add ss_active_users in SiteStats::isSane"
[mediawiki.git]
/
maintenance
/
postgres
/
archives
/
patch-profiling.sql
blob
1c4dce4e28dbe21b2473861fdbb78582ad57f724
1
CREATE TABLE profiling (
2
pf_count INTEGER NOT NULL DEFAULT 0,
3
pf_time NUMERIC(18,10) NOT NULL DEFAULT 0,
4
pf_name TEXT NOT NULL,
5
pf_server TEXT NULL
6
);
7
CREATE UNIQUE INDEX pf_name_server ON profiling (pf_name, pf_server);