Skip to content

Commit

Permalink
Fix 'src' not found warning when using isAndromedaTable() with late…
Browse files Browse the repository at this point in the history
…st version of `dbplyr`.
  • Loading branch information
Admin_mschuemi authored and Admin_mschuemi committed Dec 20, 2024
1 parent 755f5fb commit a853ae7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: Andromeda
Type: Package
Title: Asynchronous Disk-Based Representation of Massive Data
Version: 0.6.7
Date: 2024-08-21
Version: 0.6.8
Date: 2024-09-23
Authors@R: c(
person("Adam", "Black", , "[email protected]", role = c("aut")),
person("Egill", "Fridgeirsson", , "[email protected]", role = c("aut")),
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Andromeda 0.6.8
===============

Bugfixes

- Fix 'src' not found warning when using `isAndromedaTable()` with latest version of `dbplyr`.


Andromeda 0.6.7
===============

Expand Down
2 changes: 1 addition & 1 deletion R/Object.R
Original file line number Diff line number Diff line change
Expand Up @@ -466,5 +466,5 @@ checkIfValid <- function(x) {
#' close(andr)
#' }
isAndromedaTable <- function(tbl) {
return(inherits(tbl, "tbl") && inherits(dbplyr::remote_con(tbl), "Andromeda"))
return(inherits(tbl, "tbl_dbi") && inherits(dbplyr::remote_con(tbl), "Andromeda"))
}

0 comments on commit a853ae7

Please sign in to comment.