| 389 | } |
| 390 | |
| 391 | bool process(const UCHAR* str, SLONG length) |
| 392 | { |
| 393 | StrConverter cvt(pool, textType, str, length); |
| 394 | fb_assert(length % sizeof(CharType) == 0); |
| 395 | return evaluator.processNextChunk( |
| 396 | reinterpret_cast<const CharType*>(str), length / sizeof(CharType)); |
| 397 | } |
| 398 | |
| 399 | static LikeMatcher* create(MemoryPool& pool, TextType* ttype, const UCHAR* str, |
| 400 | SLONG length, const UCHAR* escape, SLONG escape_length, |
no test coverage detected