| 46 | } |
| 47 | |
| 48 | static const char* GetDate(void) { |
| 49 | static char buf[200]; |
| 50 | time_t t = time(nullptr); |
| 51 | struct tm* p = localtime(&t); |
| 52 | strftime(buf, sizeof(buf), "[%Y-%m-%d %H:%M:%S]", p); |
| 53 | return buf; |
| 54 | } |
| 55 | |
| 56 | void fillLongValues(const std::vector<std::string>& data, orc::ColumnVectorBatch* batch, |
| 57 | uint64_t numValues, uint64_t colIndex) { |