Skip to content

Commit

Permalink
update clickhouse sequence representation
Browse files Browse the repository at this point in the history
  • Loading branch information
remo87 committed Sep 26, 2024
1 parent 7972773 commit f2e70c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/clickhouse/rep/SeqRep.scala
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ object SeqRep {
from.length match {
case n if n > minLenTokensForStr =>
val offset: Int = minLenTokensForStr / 2
from.slice(offset, n - offset).split("\\),\\(").map(f(_)).toVector
from.slice(offset, n - offset).split("\\], \\[").map(f(_)).toVector
case _ => Vector.empty
}
} else
Expand Down

0 comments on commit f2e70c7

Please sign in to comment.