| 68 | } |
| 69 | |
| 70 | void CreatingSetStep::describeActions(FormatSettings & settings) const |
| 71 | { |
| 72 | if (!set_and_key->set) |
| 73 | return ; |
| 74 | |
| 75 | const String & prefix = settings.detail_prefix; |
| 76 | |
| 77 | settings.out << prefix; |
| 78 | settings.out << "Set: "; |
| 79 | settings.out << (settings.pretty ? QueryPlanFormat::formatColumnPretty(set_and_key->key, settings.pretty_names) : set_and_key->key) << '\n'; |
| 80 | } |
| 81 | |
| 82 | void CreatingSetStep::describeActions(JSONBuilder::JSONMap & map) const |
| 83 | { |
nothing calls this directly
no test coverage detected