| 64 | } |
| 65 | |
| 66 | void assertIsAscii( |
| 67 | const SimpleVectorPtr<StringView>& vector, |
| 68 | const SelectivityVector& rows, |
| 69 | bool expected) { |
| 70 | auto ascii = vector->isAscii(rows); |
| 71 | ASSERT_TRUE(ascii.has_value()); |
| 72 | ASSERT_EQ(ascii.value(), expected); |
| 73 | }; |
| 74 | |
| 75 | } // namespace |
| 76 |