~ubuntuone/filesync-server/trunk

« back to all changes in this revision

Viewing changes to src/backends/db/schemas/fsync_shard/patch_8.py

  • Committer: Facundo Batista
  • Date: 2015-08-05 13:10:02 UTC
  • Revision ID: facundo@taniquetil.com.ar-20150805131002-he7b7k704d8o7js6
First released version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2008-2015 Canonical
 
2
#
 
3
# This program is free software: you can redistribute it and/or modify
 
4
# it under the terms of the GNU Affero General Public License as
 
5
# published by the Free Software Foundation, either version 3 of the
 
6
# License, or (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU Affero General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU Affero General Public License
 
14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# For further info, check  http://launchpad.net/filesync-server
 
17
 
 
18
"""
 
19
Add a function to help on getting formatted stats on running transactions.
 
20
"""
 
21
 
 
22
SQL = [
 
23
    """
 
24
    SET search_path = public, pg_catalog;
 
25
 
 
26
    CREATE FUNCTION activity() RETURNS SETOF pg_stat_activity
 
27
        LANGUAGE sql SECURITY DEFINER
 
28
        SET search_path TO public
 
29
        AS $$
 
30
        SELECT
 
31
            datid, datname, procpid, usesysid, usename,
 
32
            application_name, client_addr, client_hostname, client_port,
 
33
            backend_start, xact_start, query_start, waiting,
 
34
            CASE
 
35
                WHEN current_query LIKE '<IDLE>%'
 
36
                    OR current_query LIKE 'autovacuum:%'
 
37
                    THEN current_query
 
38
                ELSE
 
39
                    '<HIDDEN>'
 
40
            END AS current_query
 
41
        FROM pg_catalog.pg_stat_activity;
 
42
    $$;
 
43
 
 
44
    COMMENT ON FUNCTION activity() IS
 
45
        'SECURITY DEFINER wrapper around pg_stat_activity allowing \
 
46
         unprivileged users to access most of its information.';
 
47
    """,
 
48
]
 
49
 
 
50
 
 
51
def apply(store):
 
52
    """Apply the patch."""
 
53
    for sql in SQL:
 
54
        store.execute(sql)