Skip to content

Commit

Permalink
add InterSystems IRIS datatypes to insertTable unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeboe committed Oct 10, 2024
1 parent 8a6cdbd commit 026d0b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/testthat/test-insertTable.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ for (testServer in testServers) {
expect_equal(as.character(columnInfo$field.type), c("DATE", "TIMESTAMP", "INT", "FLOAT", "STRING", "BIGINT"))
} else if (dbms == "bigquery") {
expect_equal(as.character(columnInfo$field.type), c("DATE", "DATETIME", "INT64", "FLOAT64", "STRING", "INT64"))
} else if (dbms == "iris") {
expect_equal(as.character(columnInfo$field.type), c("DATE", "TIMESTAMP", "INTEGER", "DOUBLE", "VARCHAR", "BIGINT"))
} else {
warning("Unable to check column types for ", dbms)
}
Expand Down

0 comments on commit 026d0b3

Please sign in to comment.