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
import doobie.postgres.implicits.unliftedStringArrayType
given metaNonEmptySetYYY: Meta[NonEmptySet[YYY]] =
new Meta[NonEmptySet[YYY]](
get = unliftedStringArrayType.get.temap(
SortedSet.from(_).toNes.fold(Left("Empty set found")) { strings =>
Try(strings.map(YYY.valueOf)).toEither.left.map(_.getMessage)
}
),
put = unliftedStringArrayType.put.tcontramap(_.map(_.toString).toSortedSet.toArray),
)
postgres
CREATE TYPE yyy AS ENUM ( 'a');
... col yyy[] NOT NULL ...
The text was updated successfully, but these errors were encountered:
michae1T
changed the title
Array
Analysis over op on array column failing in RC6
Oct 31, 2024
@jatcwang see test suites using analysis targeting queries with array columns now fail on upgrade to
1.0.0-RC6
possibly due to #2091
meta:
postgres
The text was updated successfully, but these errors were encountered: