Skip to content

Commit

Permalink
Merge pull request #503 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 8bdf133 + beb5973 commit ef64063
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 28 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ Collate:
'initRegExp.R'
'isSQLKeyword_SQLiteConnection_character.R'
'make.db.names_SQLiteConnection_character.R'
'names.R'
'pkgconfig.R'
'show_SQLiteConnection.R'
'sqlData_SQLiteConnection.R'
Expand Down
1 change: 0 additions & 1 deletion R/dbColumnInfo_SQLiteResult.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#' @usage NULL
dbColumnInfo_SQLiteResult <- function(res, ...) {
df <- result_column_info(res@ptr)
df$name <- tidy_names(df$name)
df
}
#' @rdname SQLiteResult-class
Expand Down
2 changes: 1 addition & 1 deletion R/dbFetch_SQLiteResult.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dbFetch_SQLiteResult <- function(res, n = -1, ...,
ret <- result_fetch(res@ptr, n = n)
ret <- convert_bigint(ret, res@bigint)
ret <- sqlColumnToRownames(ret, row.names)
set_tidy_names(ret)
ret
}
#' @rdname SQLiteResult-class
#' @export
Expand Down
25 changes: 0 additions & 25 deletions R/names.R

This file was deleted.

0 comments on commit ef64063

Please sign in to comment.