Skip to content

Commit

Permalink
fix: reduce default max rows for fuzz testing
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Dec 15, 2024
1 parent 358d5e1 commit 957d0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests-fuzz/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ macro_rules! make_get_from_env_helper {

make_get_from_env_helper!(GT_FUZZ_INPUT_MAX_ALTER_ACTIONS, 256);
make_get_from_env_helper!(GT_FUZZ_INPUT_MAX_INSERT_ACTIONS, 8);
make_get_from_env_helper!(GT_FUZZ_INPUT_MAX_ROWS, 2048);
make_get_from_env_helper!(GT_FUZZ_INPUT_MAX_ROWS, 512);
make_get_from_env_helper!(GT_FUZZ_INPUT_MAX_TABLES, 64);
make_get_from_env_helper!(GT_FUZZ_INPUT_MAX_COLUMNS, 32);

Expand Down

0 comments on commit 957d0b4

Please sign in to comment.