Skip to content

Commit 5c4cbb6

Browse files
authored
Chore: fix bigquery information schema integration test (#4412)
1 parent 7ee6fb7 commit 5c4cbb6

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/core/engine_adapter/integration/test_integration_bigquery.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ def _mutate_config(_: str, config: Config) -> None:
229229
"table_type": exp.DataType.build("TEXT"),
230230
"is_insertable_into": exp.DataType.build("TEXT"),
231231
"is_typed": exp.DataType.build("TEXT"),
232-
"managed_table_type": exp.DataType.build("TEXT"),
233232
"creation_time": exp.DataType.build("TIMESTAMPTZ"),
234233
"base_table_catalog": exp.DataType.build("TEXT"),
235234
"base_table_schema": exp.DataType.build("TEXT"),
@@ -274,8 +273,7 @@ def _mutate_config(_: str, config: Config) -> None:
274273
" `tables`.`replication_status` AS `replication_status`,\n"
275274
" `tables`.`replication_error` AS `replication_error`,\n"
276275
" `tables`.`is_change_history_enabled` AS `is_change_history_enabled`,\n"
277-
" `tables`.`sync_status` AS `sync_status`,\n"
278-
" `tables`.`managed_table_type` AS `managed_table_type`\n"
276+
" `tables`.`sync_status` AS `sync_status`\n"
279277
f"FROM {dependency} AS `tables`"
280278
)
281279

0 commit comments

Comments
 (0)