We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4b9490 commit e680cc2Copy full SHA for e680cc2
tests/integration/progress/test_install.py
@@ -0,0 +1,7 @@
1
+def test_history_installation_run_creates_history_records_table(az_cli_ctx, sql_backend) -> None:
2
+ az_cli_ctx.history_installation.run()
3
+ query = (
4
+ f"SELECT 1 FROM tables WHERE table_catalog = '{az_cli_ctx.config.ucx_catalog}' "
5
+ "AND table_schema = 'history' AND table_name = 'records'"
6
+ )
7
+ assert any(sql_backend.fetch(query, catalog="system", schema="information_schema"))
0 commit comments