set PAGE_SIZE=1 and generate new dataset (#7559)

13080 rows in total. both generating and loading this are pretty broken now. filters are wrong for example
This commit is contained in:
chenyu
2024-11-05 11:25:01 -05:00
committed by GitHub
parent 7581a57aac
commit 207bca6cea
6 changed files with 6 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ from test.helpers import print_diff
# *** process replay settings
# internal
PAGE_SIZE = 100
PAGE_SIZE = getenv("PAGE_SIZE", 100)
REF = os.getenv("GITHUB_REF_NAME", "")
MAX_DIFF_PCT = getenv("PROCESS_REPLAY_MAX_DIFF_PCT", 20)
TABLE_NAME = f"process_replay_{VERSION}"