Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netezza: boolean column handling #850

Merged
merged 3 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# odbc (development version)

* Netezza: Improved data type inference for character columns (#847).
* Netezza: Improved data type inference for character and boolean
columns (#847).

* Added functions `odbcEditDrivers()`, `odbcEditSystemDSN()`, and
`odbcEditUserDSN()` to provide a shorthand for
Expand Down
1 change: 1 addition & 0 deletions R/driver-netezza.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
switch_type(
obj,
character = varchar(obj),
logical = "BOOL",

Check warning on line 13 in R/driver-netezza.R

View check run for this annotation

Codecov / codecov/patch

R/driver-netezza.R#L13

Added line #L13 was not covered by tests
callNextMethod(con, obj, ...)
)
}
Expand Down
Loading