Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zz-jason committed Nov 22, 2017
1 parent 02bccd9 commit 19d2586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expression/expression.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func EvalExprsToChunk(ctx context.Context, exprs []Expression, input, output *ch
return nil
}

func evalOneCell(sc *variable.StatementContext, expr Expression, input, output *chunk.Chunk, rowID, colID int) error {
func evalOneCell(sc *stmtctx.StatementContext, expr Expression, input, output *chunk.Chunk, rowID, colID int) error {
switch fieldType, evalType := expr.GetType(), expr.GetType().EvalType(); evalType {
case types.ETInt:
res, isNull, err := expr.EvalInt(input.GetRow(rowID), sc)
Expand Down

0 comments on commit 19d2586

Please sign in to comment.