Bugfixes
- Fix
isAndromedaTable()
when table belongs to descendant of Andromda.
Bugfixes
- Fix error when calling
groupApply()
withdbplyr
>= 2.5.0.
Bugfixes
- Ensuring package passes R check even when
arrow
is not installed. Required to stay in CRAN.
Bugfixes
- Fix a bug causing Andromeda saving not to respect andromeda temp folder
Bugfixes
- Fix workflow
Changes
- Added
isAndromedaTable()
function.
Bugfixes
- Fix compatibility with dbplyr.
Changes
- Provide methods to get and set Andromeda table names using the
names
andnames<-
generic functions. - Provide methods to get and set Andromeda table column names using the
names
andnames<-
generic functions.
Changes
- Andromeda now supports dates and datetimes (link).
Bug Fixes
- Fix issue when loading loading large Andromeda files from disk (link).
Changes
- Remove test causing R CMD check to fail on fedora.
Changes
- Added the
createIndex
,listIndices
, andremoveIndex
functions.
Bug fixes
-
Setting SQLite temp_store_directory to Andromeda temp folder as well to prevent running out of space in default drive.
-
Normalizing path before querying available disk space to avoid errors when using tilde in the path.
Bug fixes
- Switching to low-level Java calls to avoid error in CRAN's Debian test environment.
Changes
-
Throw more informative error when user tries to use invalid Andromeda object.
-
Added function
getAndromedaTempDiskSpace
. Requires rJava to be installed. (ReturnsNA
if not installed.) -
Throw warning when disk space becomes low. Threshold defaults to 10GB, but can be altered using
options(warnDiskSpaceThreshold = <n>)
. -
Allow assigning query result to an Andromeda table where the query uses that Andromeda table. (e.g.
andromeda$cars <- andromeda$cars %>% filter(speed > 10)
) -
Added
progressBar
arguments tobatchApply
andgroupApply
.
Bug fixes
-
Unzipping now also done in Andromeda temp folder (instead of system temp folder).
-
Lower but faster compression level now also used when saving without maintaining connection.
Changes
-
Dropping
nrow
andncol
support, as this seems to cause instability and is not consistent withdplyr
. -
Dropping
isSorted
function, as database queries are only guaranteed to stay sorted if explicitly required to (usingarrange
). -
Added
restoreDate
andrestorePosixct
functions.
Bug fixes
-
Fixed typo in
isAndromeda
function name. -
Fixed incompatibility issue with
dplyr
1.0.0 causing 'method not supported' error. -
Correctly handling differences in column order when appending.
-
Fixed copying of zero-row tables from one Andromeda to another.
-
Fixed issue where Andromeda object inheritance was lost on R restart.
Changes
- Changes in documentation for CRAN.
Changes
-
Adding fast
isSorted
function. -
Changes in documentation for CRAN.
Changes
-
Minor edits to documentation in preparation for submission to CRAN.
-
Changing compression level when saving: 10-fold reduction in compression time at the cost of 10% larger file size.
-
Increasing batch size from 10,000 to 100,000 to increase speed.
-
Turning of SQLIte journal to increase speed.
Initial version.