Skip to content

Commit 256b325

Browse files
authored
Merge pull request #463 from r-dbi/b-names
2 parents 4c99316 + 134b044 commit 256b325

File tree

4 files changed

+1
-35
lines changed

4 files changed

+1
-35
lines changed

DESCRIPTION

-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ Collate:
101101
'dbWriteTable_PqConnection_character_data.frame.R'
102102
'default.R'
103103
'export.R'
104-
'names.R'
105104
'quote.R'
106105
'show_PqConnection.R'
107106
'sqlData_PqConnection.R'

R/dbColumnInfo_PqResult.R

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
dbColumnInfo_PqResult <- function(res, ...) {
44
rci <- result_column_info(res@ptr)
55
rci <- cbind(rci, .typname = type_lookup(rci[[".oid"]], res@conn), stringsAsFactors = FALSE)
6-
rci$name <- tidy_names(rci$name)
76
rci
87
}
98

R/dbFetch_PqResult.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dbFetch_PqResult <- function(res, n = -1, ..., row.names = FALSE) {
1313
ret <- convert_bigint(ret, res@bigint)
1414
ret <- finalize_types(ret, res@conn)
1515
ret <- fix_timezone(ret, res@conn)
16-
set_tidy_names(ret)
16+
ret
1717
}
1818

1919
#' @rdname postgres-query

R/names.R

-32
This file was deleted.

0 commit comments

Comments
 (0)