I am studying Kylin, and found when kylin execute a query, there are two param
"acceptPartial" and 'backdoorToggles'. What's the meaning?
public class SQLRequest implements Serializable {
protected static final long serialVersionUID = 1L;
private String sql;
private String project;
private Integer offset = 0;
private Integer limit = 0;
private boolean acceptPartial = false;
private Map<String, String> backdoorToggles;
I've searched a lot and didn't find the answer.