From e7cc060965c7145892cf935416092b3f81d9178a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 26 Sep 2021 07:35:22 +0200 Subject: [PATCH] NEWS and CRAN comments --- NEWS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 530e2f71..28395117 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,12 +6,11 @@ - `Redshift()` connections now adhere to almost all of the DBI specification when connecting to a Redshift cluster. BLOBs are not supported on Redshift, and there are limitations with enumerating temporary and persistent tables (#215, #326). - `dbBegin()`, `dbCommit()` and `dbRollback()` gain `name` argument to support savepoints. An unnamed transaction must be started beforehand (#13). +- `dbWriteTable()` uses a transaction (#307). - `dbSendQuery()` gains `immediate` argument. Multiple queries (separated by semicolons) can be passed in this mode, query parameters are not supported (#272). - `dbConnect(check_interrupts = TRUE)` now aborts a running query faster and more reliably when the user signals an interrupt, e.g. by pressing Ctrl+C (#336). - `dbAppendTable()` gains `copy` argument. If set to `TRUE`, data is imported via `COPY name FROM STDIN` (#241, @hugheylab). - Postgres `NOTICE` messages are now forwarded as proper R messages and can be captured and suppressed (#208). -- `dbWriteTable()` uses a transaction (#307). - ## Bug fixes