We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf2b2d9 commit eee37ceCopy full SHA for eee37ce
rust/cubestore/cubestore/src/queryplanner/pretty_printers.rs
@@ -55,6 +55,18 @@ pub struct PPOptions {
55
pub show_check_memory_nodes: bool,
56
}
57
58
+impl PPOptions {
59
+ pub fn everything() -> PPOptions {
60
+ PPOptions {
61
+ show_filters: true,
62
+ show_sort_by: true,
63
+ show_aggregations: true,
64
+ show_output_hints: true,
65
+ show_check_memory_nodes: true,
66
+ }
67
68
+}
69
+
70
pub fn pp_phys_plan(p: &dyn ExecutionPlan) -> String {
71
pp_phys_plan_ext(p, &PPOptions::default())
72
0 commit comments