Add support for blob expressions.

This commit is contained in:
go-jet 2025-02-28 18:23:15 +01:00
parent 26e478dc7e
commit c94216ab0e
37 changed files with 1296 additions and 81 deletions

View file

@ -42,6 +42,6 @@ func (c *cast) AS_REAL() FloatExpression {
}
// AS_BLOB cast expression to BLOB type
func (c *cast) AS_BLOB() StringExpression {
return StringExp(c.AS("BLOB"))
func (c *cast) AS_BLOB() BlobExpression {
return BlobExp(c.AS("BLOB"))
}