| 22 | } |
| 23 | |
| 24 | static ITransformingStep::Traits getTraits(const ActionsDAG & actions) |
| 25 | { |
| 26 | return ITransformingStep::Traits |
| 27 | { |
| 28 | { |
| 29 | .returns_single_stream = false, |
| 30 | .preserves_number_of_streams = true, |
| 31 | .preserves_sorting = false, |
| 32 | }, |
| 33 | { |
| 34 | .preserves_number_of_rows = !actions.hasArrayJoin(), |
| 35 | } |
| 36 | }; |
| 37 | } |
| 38 | |
| 39 | static bool containsCompiledFunction(const ActionsDAG::Node * node) |
| 40 | { |
no test coverage detected