Skip to content

Commit

Permalink
Fixed RDBMS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaidioz committed Jun 10, 2024
1 parent 23c8a08 commit 6b51b21
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ trait MySQLPackageTest extends CompilerTestContext with CredentialsTestContext w
| doublecol: 3.14,
| decimalcol: Decimal.From(1200000000),
| stringcol: "120",
| timecol: Time.Build(12, 23, seconds=34, milliseconds=123),
| timecol: Time.Build(12, 23, seconds=34, millis=123),
| datecol: Date.Build(2020, 1, 1),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, milliseconds=123),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, millis=123),
| boolcol: false,
| binarycol: Binary.FromString("Olala!")
|}]""".stripMargin)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ trait PostgreSQLPackageTest extends CompilerTestContext with CredentialsTestCont
| doublecol: 3.14,
| decimalcol: Decimal.From(12000000),
| stringcol: "120",
| timecol: Time.Build(12, 23, seconds=34, milliseconds=123),
| timecol: Time.Build(12, 23, seconds=34, millis=123),
| datecol: Date.Build(2020, 1, 1),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, milliseconds=123),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, millis=123),
| boolcol: false,
| binarycol: Binary.FromString("Olala!")
|}]""".stripMargin)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ trait SnowflakePackageTest extends CompilerTestContext with CredentialsTestConte
| doublecol: 3.14,
| decimalcol: Decimal.From(12000000),
| stringcol: "120",
| timecol: Time.Build(12, 23, seconds=34, milliseconds=123),
| timecol: Time.Build(12, 23, seconds=34, millis=123),
| datecol: Date.Build(2020, 1, 1),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, milliseconds=123),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, millis=123),
| boolcol: false,
| binarycol: String.Encode("tralala", "utf-8")
|}]""".stripMargin)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ trait SqlServerPackageTest extends CompilerTestContext with CredentialsTestConte
| doublecol: 3.14,
| decimalcol: Decimal.From(12000000),
| stringcol: "120",
| timecol: Time.Build(12, 23, seconds=34, milliseconds=123),
| timecol: Time.Build(12, 23, seconds=34, millis=123),
| datecol: Date.Build(2020, 1, 1),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, milliseconds=123),
| timestampcol: Timestamp.Build(2020, 1, 1, 12, 23, seconds=34, millis=123),
| binarycol: Binary.FromString("Olala!")
|}]""".stripMargin)
}
Expand Down

0 comments on commit 6b51b21

Please sign in to comment.