| 58 | bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; } |
| 59 | |
| 60 | ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override |
| 61 | { |
| 62 | return DataTypeArray(std::make_shared<DataTypeString>()) |
| 63 | .createColumnConst(input_rows_count, Array { db_name }); |
| 64 | } |
| 65 | }; |
| 66 | |
| 67 | } |
nothing calls this directly
no test coverage detected