| 26 | namespace impala { |
| 27 | |
| 28 | StringValue FromStdString(const string& str) { |
| 29 | char* ptr = const_cast<char*>(str.c_str()); |
| 30 | int len = str.size(); |
| 31 | return StringValue(ptr, len); |
| 32 | } |
| 33 | |
| 34 | void TestCompareImpl(StringValue* svs, int NUM_STRINGS) { |
| 35 | for (int i = 0; i < NUM_STRINGS; ++i) { |
no test coverage detected