~percona-toolkit-dev/percona-toolkit/mysql-5.6-test-fixes

« back to all changes in this revision

Viewing changes to t/lib/samples/pg/pg-syslog-003.txt

  • Committer: Daniel Nichter
  • Date: 2011-06-24 17:22:06 UTC
  • Revision ID: daniel@percona.com-20110624172206-c7q4s4ad6r260zz6
Add lib/, t/lib/, and sandbox/.  All modules are updated and passing on MySQL 5.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Feb  8 09:53:51 debian postgres[7622]: [21-1] 2010-02-08 09:53:51.724 EST c=4b701056.1dc6,u=fred,D=fred LOG:  statement: SELECT n.nspname as "Schema",
 
2
Feb  8 09:53:51 debian postgres[7622]: [21-2] #011  c.relname as "Name",
 
3
Feb  8 09:53:51 debian postgres[7622]: [21-3] #011  CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'i' THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN
 
4
Feb  8 09:53:51 debian postgres[7622]: [21-4]  'special' END as "Type",
 
5
Feb  8 09:53:51 debian postgres[7622]: [21-5] #011  r.rolname as "Owner"
 
6
Feb  8 09:53:51 debian postgres[7622]: [21-6] #011FROM pg_catalog.pg_class c
 
7
Feb  8 09:53:51 debian postgres[7622]: [21-7] #011     JOIN pg_catalog.pg_roles r ON r.oid = c.relowner
 
8
Feb  8 09:53:51 debian postgres[7622]: [21-8] #011     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
 
9
Feb  8 09:53:51 debian postgres[7622]: [21-9] #011WHERE c.relkind IN ('r','v','S','')
 
10
Feb  8 09:53:51 debian postgres[7622]: [21-10] #011  AND n.nspname <> 'pg_catalog'
 
11
Feb  8 09:53:51 debian postgres[7622]: [21-11] #011  AND n.nspname !~ '^pg_toast'
 
12
Feb  8 09:53:51 debian postgres[7622]: [21-12] #011  AND pg_catalog.pg_table_is_visible(c.oid)
 
13
Feb  8 09:53:51 debian postgres[7622]: [21-13] #011ORDER BY 1,2;
 
14
Feb  8 09:53:51 debian postgres[7622]: [22-1] 2010-02-08 09:53:51.867 EST c=4b701056.1dc6,u=fred,D=fred LOG:  duration: 150.472 ms