mirror of
https://github.com/chaisql/chai.git
synced 2025-10-06 08:06:55 +08:00
stream: clone stream before execution
This commit is contained in:
@@ -578,7 +578,7 @@ func (p *Parser) parseCastExpression() (expr.Expr, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return expr.Cast{Expr: e, CastAs: tp}, nil
|
||||
return &expr.Cast{Expr: e, CastAs: tp}, nil
|
||||
}
|
||||
|
||||
// tokenIsAllowed is a helper function that determines if a token is allowed.
|
||||
|
Reference in New Issue
Block a user