From 6369879d980c967921f3bba14865ad50baebb2c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Tue, 14 Sep 2021 16:21:14 +0200 Subject: [PATCH] Add test placholders --- tests/testthat/helper-DBItest.R | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/testthat/helper-DBItest.R b/tests/testthat/helper-DBItest.R index 4a412ad8..e5b17e6a 100644 --- a/tests/testthat/helper-DBItest.R +++ b/tests/testthat/helper-DBItest.R @@ -5,6 +5,9 @@ DBItest::make_context( NULL, name = "RPostgres", tweaks = DBItest::tweaks( + # Redshift: + # omit_blob_tests = TRUE, + placeholder_pattern = "$1", date_cast = function(x) paste0("date '", x, "'"), time_cast = function(x) paste0("time '", x, "'"), @@ -17,6 +20,13 @@ DBItest::make_context( if (.Platform$r_arch == "i386") "append_roundtrip_timestamp", if (.Platform$r_arch == "i386") "roundtrip_timestamp", + # Redshift: + # "exists_table_temporary", + # "remove_table_temporary", + # "remove_table_temporary_arg", + # "list_objects_temporary", + # "list_fields_temporary", + NULL ) )