瀏覽代碼

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 年之前
父節點
當前提交
c715feb
共有 1 個文件被更改,包括 1 次插入1 次删除
  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):