Skip to content

Commit 785bcab

Browse files
authored
[Internal] Add tag for SQL warehouse used in Online Table tests (#3905)
## Changes The TestUcAccOnlineTable test fails because it uses a SQL warehouse that does not have an owner tag, as required by policy for our internal accounts. This PR adds this tag. ## Tests Ran the test locally, and it passes. - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] relevant acceptance tests are passing - [ ] using Go SDK
1 parent 0053470 commit 785bcab

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

internal/acceptance/online_table_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ resource "databricks_catalog" "sandbox" {
3030
cluster_size = "2X-Small"
3131
max_num_clusters = 1
3232
warehouse_type = "PRO"
33+
tags {
34+
custom_tags {
35+
key = "Owner"
36+
value = "eng-dev-ecosystem-team_at_databricks.com"
37+
}
38+
}
3339
}
3440
3541
resource "databricks_sql_table" "table" {

0 commit comments

Comments
 (0)