| 276 | } |
| 277 | |
| 278 | VectorPtr |
| 279 | uuidManyWithSeed(int64_t seed, int32_t partitionIndex, int32_t batchSize) { |
| 280 | setSparkPartitionId(partitionIndex); |
| 281 | auto exprSet = compileExpression(fmt::format("uuid({})", seed), ROW({})); |
| 282 | return evaluate(*exprSet, makeRowVector(ROW({}), batchSize)); |
| 283 | } |
| 284 | |
| 285 | std::string generateRandomString(size_t length) { |
| 286 | const std::string chars = |
nothing calls this directly
no test coverage detected