Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Oct 16, 2024
1 parent 5975821 commit 3a2e340
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/snowflake/dialect/dialect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func TestSnowflakeDialect_KindForDataType(t *testing.T) {
func TestSnowflakeDialect_KindForDataType_DateTime(t *testing.T) {
{
// Timestamp with time zone
expectedDateTimes := []string{"TIMESTAMP", "TIMESTAMP_LTZ", "TIMESTAMP_TZ"}
expectedDateTimes := []string{"TIMESTAMP_LTZ", "TIMESTAMP_TZ"}
for _, expectedDateTime := range expectedDateTimes {
kd, err := SnowflakeDialect{}.KindForDataType(expectedDateTime, "")
assert.NoError(t, err)
Expand All @@ -185,7 +185,7 @@ func TestSnowflakeDialect_KindForDataType_DateTime(t *testing.T) {
}
{
// Timestamp without time zone
expectedDateTimes := []string{"DATETIME", "TIMESTAMP_NTZ(9)"}
expectedDateTimes := []string{"TIMESTAMP", "DATETIME", "TIMESTAMP_NTZ(9)"}
for _, expectedDateTime := range expectedDateTimes {
kd, err := SnowflakeDialect{}.KindForDataType(expectedDateTime, "")
assert.NoError(t, err)
Expand Down

0 comments on commit 3a2e340

Please sign in to comment.