| 84 | value ? "true" : "false"}, |
| 85 | }); |
| 86 | } |
| 87 | |
| 88 | void setFlinkCompatible(bool value) { |
| 89 | auto config = queryCtx_->queryConfig().rawConfigsCopy(); |
| 90 | config[core::QueryConfig::kEnableFlinkCompatible] = std::to_string(value); |
| 91 | queryCtx_->testingOverrideConfigUnsafe(std::move(config)); |
| 92 | } |
| 93 |
nothing calls this directly
no test coverage detected