You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
If you try to serialize escaped new line (\\n) with SimpleArrayUtils.mkString and deserialize with SimpleArrayUtils.fromString, the result will not have n
import com.github.tminglei.slickpg.utils.SimpleArrayUtils
val input = List("Test \\n")
val result = SimpleArrayUtils.fromString[String](identity)(
SimpleArrayUtils.mkString[String](identity)(input)
).orNull
assert(result == input) //List("Test \") did not equal List("Test \n")
The text was updated successfully, but these errors were encountered:
Description:
If you try to serialize escaped new line (
\\n
) with SimpleArrayUtils.mkString and deserialize with SimpleArrayUtils.fromString, the result will not haven
Prerequisites:
Minimal example:
The text was updated successfully, but these errors were encountered: