Skip to content

Commit

Permalink
fix: unhandled parse BQ table FQN
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisuhag committed Jun 11, 2024
1 parent 24904d9 commit 749a210
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions plugins/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ func TestBigQueryTableFQNToURN(t *testing.T) {
fqn: "bq-raw-internal:dagstream_production_feast09_s2id13_30min_demand",
expectedErr: "map URN: unexpected BigQuery table FQN 'bq-raw-internal:dagstream_production_feast09_s2id13_30min_demand', expected in format",
},
{
name: "Invalid",
fqn: ":.",
expectedErr: "map URN: unexpected BigQuery table FQN ':.', expected in format",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
Expand Down

0 comments on commit 749a210

Please sign in to comment.