Skip to content

Commit

Permalink
Set maximum in-memory rows limit to 10000 to match DSS default
Browse files Browse the repository at this point in the history
  • Loading branch information
louisdorard committed Feb 19, 2025
1 parent a1a7edb commit 62c8538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dss-plugin-visual-edit/python-lib/DataEditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def __init__(
pass

MIN_SQL_ROWS = 1000
MAX_IN_MEMORY_ROWS = 20000
MAX_IN_MEMORY_ROWS = 10000
if is_sql_dataset(linked_ds):
if count_records is not None and count_records <= MIN_SQL_ROWS:
logging.debug(
Expand Down

0 comments on commit 62c8538

Please sign in to comment.