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
Make LBFactorySingle call initLoadBalancer() as the others do
[mediawiki.git]
/
maintenance
/
postgres
/
archives
/
patch-profiling.sql
blob
5a2710a861f280ef3083f8b8ffe33282d9354b2f
1
CREATE TABLE profiling (
2
pf_count INTEGER NOT NULL DEFAULT 0,
3
pf_time FLOAT NOT NULL DEFAULT 0,
4
pf_memory FLOAT NOT NULL DEFAULT 0,
5
pf_name TEXT NOT NULL,
6
pf_server TEXT NULL
7
);
8
CREATE UNIQUE INDEX pf_name_server ON profiling (pf_name, pf_server);