Skip to content

Commit 399448b

Browse files
author
James Cor
committed
test
1 parent eacd272 commit 399448b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ func RowToSQL(ctx *sql.Context, sch sql.Schema, row sql.Row, projs []sql.Express
950950
outVals := make([]sqltypes.Value, len(sch))
951951
var err error
952952
var newBuf = make([]byte, 256)
953-
if br, ok := row.(sql.BytesRow); ok {
953+
if br, ok := row.(sql.BytesRow); ok && false {
954954
if len(projs) == 0 {
955955
for i, col := range sch {
956956
val, err := br.GetBytes(i, col.Type, newBuf[:0])

0 commit comments

Comments
 (0)