Skip to content

Commit

Permalink
Fixed warning with RPostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Nov 29, 2023
1 parent 4b8a266 commit 3b8d21c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.2.9 (unreleased)

- Fixed typecasting for empty results with RPostgreSQL 0.7
- Fixed warning with RPostgreSQL

## 0.2.8 (2021-01-16)

Expand Down
2 changes: 1 addition & 1 deletion R/select.R
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ fetchRecords <- function(conn, statement, params) {
ret <- list()
column_info <- NULL

silenceWarnings(c("length of NULL cannot be changed", "unrecognized MySQL field type", "unrecognized PostgreSQL field type", "(unknown (", "Decimal MySQL column"), {
silenceWarnings(c("length of NULL cannot be changed", "unrecognized MySQL field type", "unrecognized PostgreSQL field type", "unknown (", "Decimal MySQL column"), {
statement <- addParams(conn, statement, params)

res <- NULL
Expand Down

0 comments on commit 3b8d21c

Please sign in to comment.