Skip to content

Commit

Permalink
Merge pull request #31199 from def-/pr-limits-max-count
Browse files Browse the repository at this point in the history
limits test: New max counts for two generators
  • Loading branch information
def- authored Jan 27, 2025
2 parents 56acd8a + 98bda3a commit ed513e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/limits/mzcompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,7 @@ class SubqueriesWhereClauseOr(Generator):
COUNT = min(
Generator.COUNT, 10
) # https://github.com/MaterializeInc/database-issues/issues/2630
MAX_COUNT = 160 # Too long-running with count=320

@classmethod
def body(cls) -> None:
Expand Down Expand Up @@ -1492,6 +1493,7 @@ def body(cls) -> None:

class PostgresSources(Generator):
COUNT = 300 # high memory consumption, slower with source tables
MAX_COUNT = 600 # Too long-running with count=1200

@classmethod
def body(cls) -> None:
Expand Down

0 comments on commit ed513e1

Please sign in to comment.