File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 57
57
uses : actions/cache@v1
58
58
with :
59
59
path : ${{ env.R_LIBS_USER }}
60
- key : ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-2 -${{ hashFiles('.github/depends.Rds') }}
61
- restore-keys : ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-2 -
60
+ key : ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1 -${{ hashFiles('.github/depends.Rds') }}
61
+ restore-keys : ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1 -
62
62
63
63
- name : Install R system dependencies
64
64
if : runner.os == 'Linux'
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ test_that("MySQL", {
29
29
" quote_identifier_vectorized" , # Can't implement until https://github.com/rstats-db/DBI/issues/71 is closed
30
30
" roundtrip_logical" , # Not an error, PostgreSQL has a logical data type
31
31
" roundtrip_timestamp" , # We explicitly want to set tzone to UTC regardless of input
32
+ " roundtrip_time" ,
32
33
" roundtrip_raw" , # TODO
33
34
" list_tables" ,
34
35
" .*_table_name" ,
@@ -51,6 +52,8 @@ test_that("MySQL", {
51
52
" list_fields_wrong_table" ,
52
53
" list_fields_quoted" ,
53
54
" list_fields_object" ,
55
+ " list_tables_quote" ,
56
+ " list_objects_quote" ,
54
57
NULL ))
55
58
DBItest :: test_meta(c(
56
59
" rows_affected_query" , # The MySQL Driver returns 1 affected row
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ test_that("PostgreSQL", {
94
94
" quote_identifier_vectorized" , # Can't implement until https://github.com/rstats-db/DBI/issues/71 is closed
95
95
" quote_identifier_special" , # TODO
96
96
" roundtrip_timestamp" , # We explicitly want to set tzone to UTC
97
+ " roundtrip_time" ,
97
98
" roundtrip_raw" , # TODO
98
99
" list_tables" ,
99
100
" .*_table_name" ,
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ test_that("SQLite", {
47
47
" roundtrip_logical" , # Not an error
48
48
" read_table" , # #7
49
49
50
+ " exists_table_temporary" ,
51
+ " list_tables_temporary" ,
52
+ " list_objects_temporary" ,
53
+ " list_fields_temporary" ,
54
+
50
55
# These work locally but fail on travis due to an old SQLite version
51
56
" roundtrip_integer" ,
52
57
" roundtrip_numeric.*" ,
You can’t perform that action at this time.
0 commit comments