Skip to content

Commit

Permalink
Add more test cases on PipelineSQLSegmentBuilder (#33304)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Oct 18, 2024
1 parent 8e1443f commit e28d60a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,9 @@ void assertGetQualifiedTableNameWithUnsupportedSchema() {
void assertGetQualifiedTableNameWithSupportedSchema() {
assertThat(postgreSQLBuilder.getQualifiedTableName("foo_schema", "foo_tbl"), is("foo_schema.foo_tbl"));
}

@Test
void assertGetQualifiedTableNameWithSupportedSchemaAndNullSchema() {
assertThat(postgreSQLBuilder.getQualifiedTableName(null, "foo_tbl"), is("foo_tbl"));
}
}

0 comments on commit e28d60a

Please sign in to comment.