Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

catalog: Add more columns to pg_roles #14282

Merged
merged 2 commits into from
Aug 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix lint
  • Loading branch information
jkosh44 committed Aug 17, 2022
commit 3acd0232daf9b050977adbc0051e776033144329
4 changes: 2 additions & 2 deletions test/cluster/mzcompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def workflow_test_builtin_migration(c: Composition) -> None:
Materialized(
image="materialize/materialized:devel-9efd269199b1510b3e8f90196cb4fa3072a548a1",
),
Testdrive(default_timeout="15s", no_reset=True, consistent_seed=True)
Testdrive(default_timeout="15s", no_reset=True, consistent_seed=True),
):
c.up("testdrive", persistent=True)
c.up("materialized")
Expand All @@ -298,7 +298,7 @@ def workflow_test_builtin_migration(c: Composition) -> None:
with c.override(
# This will stop working if we introduce a breaking change.
Materialized(),
Testdrive(default_timeout="15s", no_reset=True, consistent_seed=True)
Testdrive(default_timeout="15s", no_reset=True, consistent_seed=True),
):
c.up("testdrive", persistent=True)
c.up("materialized")
Expand Down