Skip to content

Commit

Permalink
New explain syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Feb 26, 2024
1 parent 55a1eba commit 2483b0a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions grammar.cc
Original file line number Diff line number Diff line change
Expand Up @@ -761,22 +761,22 @@ void explain_stmt::out(std::ostream &out) {
out << "with (";
switch(d6()) {
case 1:
out << "arity, join_impls, humanized_exprs";
out << "arity, join implementations, humanized expressions, filter pushdown";
break;
case 2:
out << "arity, join_impls, keys, types, humanized_exprs";
out << "arity, join implementations, keys, types, humanized expressions, no fast path, redacted, raw syntax, filter pushdown";
break;
case 3:
out << "keys, types, humanized_exprs";
out << "keys, types, humanized expressions";
break;
case 4:
out << "keys";
out << "keys, redacted, non negative";
break;
case 5:
out << "join_impls, types";
out << "join implementations, types";
break;
case 6:
out << "types";
out << "types, no fast path";
break;
}
out << ") ";
Expand Down

0 comments on commit 2483b0a

Please sign in to comment.