Skip to content

Commit

Permalink
fix(schema):redefined row limit value to max (#245)
Browse files Browse the repository at this point in the history
redefined row limit value to max

RAFD-2169
  • Loading branch information
jitendra-kumawat authored and ankursinghal2005 committed Sep 23, 2019
1 parent 544dc2e commit 3b2fed6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions superset/views/default_slice_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'metrics':None,
'percent_metrics':[],
'timeseries_limit_metric':None,
'row_limit':100,
'row_limit':50000,
'include_time':False,
'order_desc':False,
'all_columns':[],
Expand Down Expand Up @@ -60,7 +60,7 @@
},
'adhoc_filters':[],
'groupby':['agg_count'],
'row_limit':100,
'row_limit':50000,
'pie_label_type':'key',
'number_format':'.3s',
'donut':False,
Expand Down Expand Up @@ -106,7 +106,7 @@
'timeseries_limit_metric':None,
'order_desc':True,
'contribution':False,
'row_limit':100,
'row_limit':50000,
'color_scheme':'bnbColors',
'show_brush':'auto',
'send_time_range':False,
Expand Down Expand Up @@ -168,7 +168,7 @@
'adhoc_filters':[],
'groupby':['created_on'],
'columns':[],
'row_limit':100,
'row_limit':50000,
'contribution':False,
'color_scheme':'bnbColors',
'show_legend':True,
Expand Down

0 comments on commit 3b2fed6

Please sign in to comment.