~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/security.py

  • Committer: Stuart Bishop
  • Date: 2011-05-11 14:24:37 UTC
  • mto: (7675.1202.1 bugsummary)
  • mto: This revision was merged to the branch mainline in revision 13163.
  • Revision ID: stuart.bishop@canonical.com-20110511142437-lw3b9ckx3x7tkbd5
RevertĀ 8771

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
            WHERE c.relkind IN ('r','v','S','')
88
88
                AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
89
89
                AND pg_catalog.pg_table_is_visible(c.oid)
90
 
                AND c.relistemp IS NOT TRUE
91
90
            ORDER BY 1,2
92
91
            ''')
93
92
        for schema, name, type_, owner in cur.fetchall():