2017-06-15 00:53:02 +08:00
|
|
|
#include "query/interpreter.hpp"
|
|
|
|
|
|
|
|
// TODO: Remove this flag. Ast caching can be disabled by setting this flag to
|
|
|
|
// false, this is useful for recerating antlr crashes in highly concurrent test.
|
|
|
|
// Once antlr bugs are fixed, or real test is written this flag can be removed.
|
|
|
|
DEFINE_bool(ast_cache, true, "Use ast caching.");
|
2017-06-16 15:22:30 +08:00
|
|
|
|
|
|
|
DEFINE_bool(query_cost_planner, true,
|
|
|
|
"Use the cost estimator to generate plans for queries.");
|