Skip to content

Commit

Permalink
Merge pull request #30390 from def-/pr-nightly6
Browse files Browse the repository at this point in the history
Nightly fixes (November 8)
  • Loading branch information
def- authored Nov 8, 2024
2 parents 5a6957f + 74cb278 commit f5a2fa5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ slow-timeout = { period = "300s", terminate-after = 2 }
filter = "package(mz-environmentd) and test(test_storage_usage_collection_interval)"
slow-timeout = { period = "300s", terminate-after = 2 }

[[profile.default.overrides]]
filter = "package(mz-catalog) and test(global_expr_cache_roundtrip)"
slow-timeout = { period = "300s", terminate-after = 2 }

[[profile.default.overrides]]
filter = "package(mz-environmentd)"
threads-required = 8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,11 @@ def _matches_problematic_function_invocation(
expression: ExpressionWithArgs,
all_involved_characteristics: set[ExpressionCharacteristics],
) -> IgnoreVerdict:
if db_function.function_name_in_lower_case == "generate_subscripts":
return YesIgnore(
"database-issues#8410: table functions: combination with operations with NULL"
)

if db_function.function_name_in_lower_case == "jsonb_pretty":
return YesIgnore("Accepted")

Expand Down
1 change: 1 addition & 0 deletions test/limits/mzcompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -1675,6 +1675,7 @@ def app_password(email: str) -> str:
"--https-resolver-template=materialized:6876",
"--tls-key=/secrets/balancerd.key",
"--tls-cert=/secrets/balancerd.crt",
"--internal-tls",
],
depends_on=["test-certs"],
volumes=[
Expand Down

0 comments on commit f5a2fa5

Please sign in to comment.