Skip to content

Commit

Permalink
Removed old cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
arjen-ag5 committed Sep 7, 2024
1 parent 5d0cd24 commit e4f6a51
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions internal/jet/literal_expression.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,19 +208,6 @@ func StringArray(values []string) Array[StringExpression] {
return &l
}

type unsafeArrayLiteral[E Expression] struct {
arrayInterfaceImpl[E]
literalExpressionImpl
}

func UnsafeArray[E LiteralExpression](values []interface{}) Array[E] {
l := unsafeArrayLiteral[E]{}
l.literalExpressionImpl = *literal(pq.Array(values))
l.arrayInterfaceImpl.parent = &l

return &l
}

// ---------------------------------------------------//
type stringLiteral struct {
stringInterfaceImpl
Expand Down

0 comments on commit e4f6a51

Please sign in to comment.