Skip to content

Commit

Permalink
Merge pull request #463 from r-dbi/b-names
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr authored Apr 1, 2024
2 parents 4c99316 + 134b044 commit 256b325
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 35 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ Collate:
'dbWriteTable_PqConnection_character_data.frame.R'
'default.R'
'export.R'
'names.R'
'quote.R'
'show_PqConnection.R'
'sqlData_PqConnection.R'
Expand Down
1 change: 0 additions & 1 deletion R/dbColumnInfo_PqResult.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
dbColumnInfo_PqResult <- function(res, ...) {
rci <- result_column_info(res@ptr)
rci <- cbind(rci, .typname = type_lookup(rci[[".oid"]], res@conn), stringsAsFactors = FALSE)
rci$name <- tidy_names(rci$name)
rci
}

Expand Down
2 changes: 1 addition & 1 deletion R/dbFetch_PqResult.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dbFetch_PqResult <- function(res, n = -1, ..., row.names = FALSE) {
ret <- convert_bigint(ret, res@bigint)
ret <- finalize_types(ret, res@conn)
ret <- fix_timezone(ret, res@conn)
set_tidy_names(ret)
ret
}

#' @rdname postgres-query
Expand Down
32 changes: 0 additions & 32 deletions R/names.R

This file was deleted.

0 comments on commit 256b325

Please sign in to comment.