Browse Source

HUE-3442 [core] Increase max num rows for Excel export

Jenny Kim 9 years ago
parent
commit
682811e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/core/src/desktop/lib/export_csvxls.py

+ 1 - 1
desktop/core/src/desktop/lib/export_csvxls.py

@@ -29,7 +29,7 @@ from desktop.lib import i18n
 
 
 LOG = logging.getLogger(__name__)
-MAX_XLS_ROWS = 30000
+MAX_XLS_ROWS = 65000
 MAX_XLS_COLS = 5000