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 2977ad7 commit 3f33db5Copy full SHA for 3f33db5
tests/unit/progress/test_install.py
@@ -0,0 +1,7 @@
1
+from databricks.labs.ucx.progress.install import HistoryInstallation
2
+
3
4
+def test_history_installation_run_creates_history_schema(mock_backend) -> None:
5
+ installation = HistoryInstallation(mock_backend, "ucx")
6
+ installation.run()
7
+ assert "CREATE SCHEMA IF NOT EXISTS `ucx`.`history`" == mock_backend.queries[0]
0 commit comments