v.25.6New Feature
Function tokens now supports a new tokenizer
Functiontokensnow supports a new tokenizer, namedsplit, which is good for logs. #80195 (Robert Schulze).
Why it matters
This feature addresses the need for a simple and effective way to tokenize log strings by splitting them on whitespace or specified separators. It improves log data processing by enabling more efficient extraction of tokens from log entries.How to use it
Use thetokens function with the split tokenizer by specifying it as an argument. For example: sql<br>SELECT tokens('your log string', 'split')<br>FROM your_table<br>