// Simple tokenizer by spaces. It's a temporary solution as it doesn't cover tokenizer used by
// PostgreSQL or SQLite.
nonEmptyTokens := make([]string, 0, strings.Count(s, " ")+1)
for token := range strings.SplitSeq(s, " ") {
if token != "" {
nonEmptyTokens = append(nonEmptyTokens, token)
}
}
}