Skip to content

Commit

Permalink
Avoid code duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond committed Oct 21, 2024
1 parent 3ab5f5b commit 4d23282
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/integration/queries/test_migration_progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,26 +55,26 @@ def udfs():
"hive_metastore",
"schema1",
"custom_function",
func_type="UNKNOWN",
func_input="UNKNOWN",
func_returns="UNKNOWN",
deterministic=True,
data_access="UNKNOWN",
body="UNKNOWN",
comment="UNKNOWN",
func_type="UNKNOWN",
func_input="UNKNOWN",
func_returns="UNKNOWN",
),
Udf(
"hive_metastore",
"schema1",
"invalid_function",
func_type="UNKNOWN",
func_input="UNKNOWN",
func_returns="UNKNOWN",
deterministic=True,
data_access="UNKNOWN",
body="UNKNOWN",
comment="UNKNOWN",
failures="UDF not supported by UC",
func_type="UNKNOWN",
func_input="UNKNOWN",
func_returns="UNKNOWN",
),
):
record = (
Expand Down

0 comments on commit 4d23282

Please sign in to comment.