This function returns a tibble with information about
which key constraints are met (is_key = TRUE
) or violated (FALSE
).
The printing for this object is special, use as_tibble()
to print as a regular tibble.
dm_examine_constraints(dm)
dm | A |
---|
A tibble with the following columns:
table
the table in the dm
,
kind
"PK" or "FK",
columns
the table columns that define the key,
ref_table
for foreign keys, the referenced table,
is_key
logical,
problem
if is_key = FALSE
, the reason for that.
For the primary key constraints, it is tested if the values in the respective columns are all unique. For the foreign key constraints, the tests check if for each foreign key constraint, the values of the foreign key column form a subset of the values of the referenced column.
#>#> ● Table `flights`: foreign key tailnum into table `planes`: 1640 entries (14.6%) of `flights$tailnum` not in `planes$tailnum`: N722MQ (27), N725MQ (20), N520MQ (19), N723MQ (19), N508MQ (16), …