| 61 | class CastExprTest : public functions::test::CastBaseTest { |
| 62 | protected: |
| 63 | CastExprTest() { |
| 64 | exec::registerVectorFunction( |
| 65 | "testing_dictionary", |
| 66 | TestingDictionaryFunction::signatures(), |
| 67 | std::make_unique<TestingDictionaryFunction>()); |
| 68 | |
| 69 | registerFunction<ErrorOnOddFunctionElseUnknown, UnknownValue, int32_t>( |
| 70 | {"error_on_odd_else_unknown"}); |
| 71 | } |
| 72 | |
| 73 | void setLegacyCast(bool value) { |
| 74 | queryCtx_->testingOverrideConfigUnsafe({ |
nothing calls this directly
no test coverage detected