Query Metrics
939
Database Queries
13
Different statements
437.46 ms
Query time
5
Invalid entities
Grouped Statements
| Time▼ | Count | Info |
|---|---|---|
|
208.82 ms (47.73%) |
461 |
SELECT t0.id AS id_1, t0.file_path AS file_path_2, t0.collaborator_id AS collaborator_id_3 FROM avatar t0 WHERE t0.collaborator_id = ?
Parameters:
[
3093
]
|
|
191.60 ms (43.80%) |
461 |
SELECT t0.id AS id_1, t0.ip_address AS ip_address_2, t0.browser AS browser_3, t0.is_accepted AS is_accepted_4, t0.accepted_at AS accepted_at_5, t0.collaborator_id AS collaborator_id_6 FROM cgu t0 WHERE t0.collaborator_id = ?
Parameters:
[
3093
]
|
|
11.04 ms (2.52%) |
2 |
SELECT quote_ident(table_name) AS table_name, table_schema AS schema_name FROM information_schema.tables WHERE table_catalog = ? AND table_schema NOT LIKE 'pg\_%' AND table_schema != 'information_schema' AND table_name != 'geometry_columns' AND table_name != 'spatial_ref_sys' AND table_type = 'BASE TABLE'
Parameters:
[
"demo_db_property_management"
]
|
|
8.22 ms (1.88%) |
1 |
SELECT a0_.id AS id_0, a0_.first_name AS first_name_1, a0_.last_name AS last_name_2, a0_.email AS email_3, a0_.professional_email AS professional_email_4, a0_.birth_day AS birth_day_5, a0_.phone AS phone_6, a0_.main_phone AS main_phone_7, a0_.roles AS roles_8, a0_.password AS password_9, a0_.last_connection AS last_connection_10, a0_.person_type AS person_type_11, a0_.created_at AS created_at_12, a0_.updated_at AS updated_at_13, a1_.cin AS cin_14, a1_.is_recommender AS is_recommender_15, a1_.cnss AS cnss_16, a1_.rc AS rc_17, a1_.professional_status AS professional_status_18, a1_.subject_to_vat AS subject_to_vat_19, a1_.created_qualifiqaution_date AS created_qualifiqaution_date_20, a1_.company_name AS company_name_21, a1_.common_company_identifier AS common_company_identifier_22, a0_.type AS type_23, a0_.address_id AS address_id_24, a0_.gender_id AS gender_id_25, a0_.reference_status_id AS reference_status_id_26, a0_.reference_marital_status_id AS reference_marital_status_id_27, a1_.qualification_level_id AS qualification_level_id_28, a1_.sector_id AS sector_id_29, a1_.manager_id AS manager_id_30, a1_.status_id AS status_id_31, a1_.sponsor_id AS sponsor_id_32, a1_.nationality_id AS nationality_id_33 FROM agent a1_ INNER JOIN abstract_collaborator a0_ ON a1_.id = a0_.id ORDER BY a0_.id ASC
Parameters:
[] |
|
4.98 ms (1.14%) |
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 INNER JOIN pg_class c ON c.oid = a.attrelid INNER JOIN pg_type t ON t.oid = a.atttypid INNER JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_depend d ON d.objid = c.oid AND d.deptype = 'e' AND d.classid = (SELECT oid FROM pg_class WHERE relname = 'pg_class') WHERE a.attnum > 0 AND c.relkind = 'r' AND d.refobjid IS NULL AND n.nspname = ANY(current_schemas(false)) AND c.relname = 'doctrine_migration_versions' AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') ORDER BY a.attnum
Parameters:
[] |
|
2.95 ms (0.67%) |
1 |
SELECT quote_ident(ic.relname) AS relname, i.indisunique, i.indisprimary, i.indkey, i.indrelid, pg_get_expr(indpred, indrelid) AS "where" FROM pg_index i JOIN pg_class AS tc ON tc.oid = i.indrelid JOIN pg_namespace tn ON tn.oid = tc.relnamespace JOIN pg_class AS ic ON ic.oid = i.indexrelid WHERE ic.oid IN ( SELECT indexrelid FROM pg_index i, pg_class c, pg_namespace n WHERE c.oid = i.indrelid AND c.relnamespace = n.oid AND n.nspname = ANY(current_schemas(false)) AND c.relname = 'doctrine_migration_versions' AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast'))
Parameters:
[] |
|
2.71 ms (0.62%) |
6 |
SELECT CURRENT_DATABASE()
Parameters:
[] |
|
2.31 ms (0.53%) |
1 |
SELECT c.relname, CASE c.relpersistence WHEN 'u' THEN TRUE ELSE false END AS unlogged, obj_description(c.oid, 'pg_class') AS COMMENT FROM pg_class c INNER JOIN pg_namespace n ON n.oid = c.relnamespace WHERE c.relkind = 'r' AND n.nspname = ANY(current_schemas(false)) AND c.relname = 'doctrine_migration_versions' AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
Parameters:
[] |
|
2.10 ms (0.48%) |
1 |
SELECT quote_ident(r.conname) AS conname, pg_get_constraintdef(r.oid, TRUE) AS condef FROM pg_constraint r JOIN pg_class AS tc ON tc.oid = r.conrelid JOIN pg_namespace tn ON tn.oid = tc.relnamespace WHERE r.conrelid IN ( SELECT c.oid FROM pg_class c, pg_namespace n WHERE n.oid = c.relnamespace AND n.nspname = ANY(current_schemas(false)) AND c.relname = 'doctrine_migration_versions' AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')) AND r.contype = 'f'
Parameters:
[] |
|
1.16 ms (0.27%) |
1 |
SELECT schema_name FROM information_schema.schemata WHERE schema_name NOT LIKE 'pg\_%' AND schema_name != 'information_schema'
Parameters:
[] |
|
0.70 ms (0.16%) |
1 |
SELECT * FROM doctrine_migration_versions
Parameters:
[] |
|
0.62 ms (0.14%) |
1 |
SELECT attnum, attname FROM pg_attribute WHERE attrelid=501034 AND attnum IN (1) ORDER BY attnum ASC
Parameters:
[] |
|
0.27 ms (0.06%) |
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
| Class | Mapping errors |
|---|---|
| App\Entity\AbstractCollaborator | No errors. |
| App\Entity\Agent |
|
| App\Entity\Reference\ReferenceCollaboratorState | No errors. |
| App\Entity\Address | No errors. |
| App\Entity\City | No errors. |
| App\Entity\Gender | No errors. |
| App\Entity\Reference\ReferenceCollaboratorStatus | No errors. |
| App\Entity\Reference\ReferencePersonMaritalStatus | No errors. |
| App\Entity\QualificationLevel | No errors. |
| App\Entity\Sector |
|
| App\Entity\Manager | No errors. |
| App\Entity\Nationality | No errors. |
| App\Entity\Avatar | No errors. |
| App\Entity\Cgu | No errors. |
| App\Entity\Genealogy | No errors. |
| App\Entity\Property |
|
| App\Entity\AbstractPeople | No errors. |
| App\Entity\Candidate | No errors. |
| App\Entity\Contact | No errors. |
| App\Entity\Prescriber | No errors. |
| App\Entity\IdentityVerificationImage | No errors. |
| App\Entity\AgentsOptions | No errors. |
| App\Entity\Country | No errors. |
| App\Entity\PropertyAddress | No errors. |
| App\Entity\Neighborhood | No errors. |
| App\Entity\PropertyImages | No errors. |
| App\Entity\Mandate |
|
| App\Entity\Reference\ReferencePropertyDomain | No errors. |
| App\Entity\Reference\ReferencePropertyState | No errors. |
| App\Entity\Reference\ReferencePropertyContractType | No errors. |
| App\Entity\Reference\ReferencePropertyLandType | No errors. |
| App\Entity\Reference\ReferencePropertyDestination | No errors. |
| App\Entity\Reference\ReferencePropertyConstructionType | No errors. |
| App\Entity\Reference\ReferencePropertyOrientation | No errors. |
| App\Entity\Reference\ReferencePropertyStatus | No errors. |
| App\Entity\Reference\ReferencePropertyServiceType | No errors. |
| App\Entity\Reference\ReferencePropertyType | No errors. |
| App\Domain\PropertyMatching\Adapters\Gateway\Doctrine\PropertyMatchingEntity | No errors. |
| App\Entity\Reference\PropertyDiffusionModeReference | No errors. |
| App\Entity\CertificateOfOwnershipFile |
|
| App\Entity\PropertyDescription | No errors. |
| App\Entity\Reference\ReferenceCandidateStatus | No errors. |
| App\Entity\Reference\ReferenceContactType | No errors. |
| App\Entity\AbstractTransaction | No errors. |
| App\Entity\Transaction | No errors. |
| App\Entity\PropertyVisitVoucher | No errors. |
| App\Entity\ProxyContact | No errors. |
| App\Entity\Reference\ReferencePrescriberRelation | No errors. |
| App\Entity\Option | No errors. |