Skip to content

Commit 24bf73b

Browse files
kevinusheyjimhester
authored andcommitted
don't pass unused '...' to functions
Fixes #226
1 parent 58904cb commit 24bf73b

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

NEWS.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# odbc 1.1.6.9000
1+
# odbc (development version)
2+
3+
## Features
4+
5+
## Bugfixes
6+
7+
* Fixed an issue where `DBI::dbListFields()` could fail when used with a
8+
a qualified Id object (using both schema and table). (#226)
29

310
- fix SQL Server ODBC's unsupported '-155' data type, and its losing
411
sub-second precision on timestamps; this still returns type

R/Result.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ setMethod(
4949
setMethod(
5050
"dbFetch", "OdbcResult",
5151
function(res, n = -1, ...) {
52-
result_fetch(res@ptr, n, ...)
52+
result_fetch(res@ptr, n)
5353
})
5454

5555
#' @rdname OdbcResult
@@ -88,7 +88,7 @@ setMethod(
8888
setMethod(
8989
"dbColumnInfo", "OdbcResult",
9090
function(res, ...) {
91-
result_column_info(res@ptr, ...)
91+
result_column_info(res@ptr)
9292
})
9393

9494
#' @rdname OdbcResult

0 commit comments

Comments
 (0)