Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected List<TestItem> testData() {
createTestItem("BINARY", "The CrateDB dialect doesn't support type: BINARY(1)."),
createTestItem(
"TIMESTAMP(9) WITHOUT TIME ZONE",
"The precision of field 'f0' is out of the TIMESTAMP precision range [1, 6] supported by CrateDB dialect."),
"The precision of field 'f0' is out of the TIMESTAMP precision range [0, 6] supported by CrateDB dialect."),
createTestItem("TIMESTAMP_LTZ(3)", "Unsupported type:TIMESTAMP_LTZ(3)"));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected List<TestItem> testData() {
"The PostgreSQL dialect doesn't support type: VARBINARY(10)."),
createTestItem(
"TIMESTAMP(9) WITHOUT TIME ZONE",
"The precision of field 'f0' is out of the TIMESTAMP precision range [1, 6] supported by PostgreSQL dialect."),
"The precision of field 'f0' is out of the TIMESTAMP precision range [0, 6] supported by PostgreSQL dialect."),
createTestItem("TIMESTAMP_LTZ(3)", "Unsupported type:TIMESTAMP_LTZ(3)"));
}

Expand Down
Loading