We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f82be40 + fb7f5c1 commit 6569a7fCopy full SHA for 6569a7f
R/mockOmopSketch.R
@@ -69,10 +69,10 @@ checkColumns <- function(cdm_local){
69
for (table in names(cdm_local)){
70
cols <- info |>
71
dplyr::filter(.data$cdm_table_name == table)|>
72
- dplyr::select(cdm_field_name,cdm_datatype)
+ dplyr::select("cdm_field_name","cdm_datatype")
73
74
missing_cols <- cols|>
75
- dplyr::filter(!(cdm_field_name %in% colnames(cdm_local[[table]])))
+ dplyr::filter(!(.data$cdm_field_name %in% colnames(cdm_local[[table]])))
76
77
if (nrow(missing_cols) > 0) {
78
0 commit comments