You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Writing table failed: Columns `cdm_field_name`, `concept_id`, `unit_concept_id`, `subcategory`, `warning`, `error`, `not_applicable_reason`, `notes_value` not found
This is strange, as these columns are definitely included in the DDL. We need to investigate what's going on.
This was silently failing in our unit tests because the write to table step is wrapped in a try/catch. So the unit test should also be updated to expect no logged error.
The text was updated successfully, but these errors were encountered:
We're also getting this warning on write to table tests; should look into this as well: Column 'warning' is of type 'logical', but this is not supported by many DBMSs. Converting to numeric (1 = TRUE, 0 = FALSE)
Write to table failure was occurring because test files are run in parallel, and we were getting collisions between different tests using the same results DB table. Fixed this in #502. Still TODO:
Don't let writeToTable fail silently (should at the very least throw a warning)
Fix logical type warning mentioned in comment above
katy-sadowski
changed the title
writeToTable option failing
Unit test warnings / silent writeToTable failure
Dec 2, 2023
Error in testthat tests:
This is strange, as these columns are definitely included in the DDL. We need to investigate what's going on.
This was silently failing in our unit tests because the write to table step is wrapped in a try/catch. So the unit test should also be updated to expect no logged error.
The text was updated successfully, but these errors were encountered: