Explorar o código

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 %!s(int64=10) %!d(string=hai) anos
pai
achega
c715feb
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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):