| 845 | static constexpr int32_t reuse_strings_from_arg = 0; |
| 846 | |
| 847 | void call( |
| 848 | out_type<Varchar>& out, |
| 849 | const arg_type<Varchar>& str, |
| 850 | const int32_t& start, |
| 851 | const int32_t& length) { |
| 852 | out.copy_from(StringView(str.data() + start, length)); |
| 853 | } |
| 854 | }; |
| 855 | |
| 856 | TEST_F(SimpleFunctionTest, stringReuseConstant) { |
nothing calls this directly
no test coverage detected