FIX: remove limit when exporting to CSV

This commit is contained in:
Régis Hanol 2015-08-04 19:23:50 +02:00
parent 329ba57fba
commit 434122f9f5
1 changed files with 3 additions and 1 deletions

View File

@ -924,8 +924,10 @@ SQL
query_params = {}
query_params = MultiJson.load(params[:params]) if params[:params]
opts = {current_user: current_user.username}
opts = { current_user: current_user.username }
opts[:explain] = true if params[:explain] == "true"
opts[:limit] = "ALL" if params[:format] == "csv"
opts[:limit] = params[:limit].to_i if params[:limit]
result = DataExplorer.run_query(query, query_params, opts)