From f9b72505fb101db83581c5fce08e7a4a8b7660b0 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Fri, 23 Jul 2021 11:38:42 -0700 Subject: [PATCH] fix: revert DEFAULT_SQLLAB_LIMIT to default (#15869) --- superset/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/config.py b/superset/config.py index 25d694809e..e254ff193d 100644 --- a/superset/config.py +++ b/superset/config.py @@ -656,7 +656,7 @@ DISPLAY_MAX_ROW = 10000 # Default row limit for SQL Lab queries. Is overridden by setting a new limit in # the SQL Lab UI -DEFAULT_SQLLAB_LIMIT = 10000 +DEFAULT_SQLLAB_LIMIT = 1000 # Maximum number of tables/views displayed in the dropdown window in SQL Lab. MAX_TABLE_NAMES = 3000