| 726 | } |
| 727 | |
| 728 | QueryOptions QueryOptionsFromCustomExecContext(ExecContext exec_context) { |
| 729 | QueryOptions options; |
| 730 | options.memory_pool = exec_context.memory_pool(); |
| 731 | options.function_registry = exec_context.func_registry(); |
| 732 | return options; |
| 733 | } |
| 734 | |
| 735 | QueryOptions QueryOptionsFromArgs(MemoryPool* memory_pool, |
| 736 | FunctionRegistry* function_registry) { |
no test coverage detected