Browse Source

HUE-2527 [beeswax] Allow 5000 columns in XLS downloads

We now generate XLSX that can go until 16k.
More for now might render Hue un-usable until we get a task server.
Romain Rigaux 10 years ago
parent
commit
c715feb
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

@@ -30,7 +30,7 @@ from desktop.lib import i18n
 
 LOG = logging.getLogger(__name__)
 MAX_XLS_ROWS = 30000
-MAX_XLS_COLS = 255
+MAX_XLS_COLS = 5000
 
 
 def nullify(cell):