Add support for postgres arrays

This commit is contained in:
Arjen Brouwer 2024-09-03 15:39:36 +02:00 committed by go-jet
parent b835e25665
commit d3ada5361e
27 changed files with 558 additions and 74 deletions

View file

@ -45,6 +45,10 @@ type cast interface {
AS_INTERVAL() IntervalExpression
}
type castArray interface {
AS_STRING() jet.ArrayExpression[StringExpression]
}
type castImpl struct {
jet.Cast
}