Skip to content

Commit

Permalink
exclude query executor for check hypotesa about bug in query executor
Browse files Browse the repository at this point in the history
  • Loading branch information
asmyasnikov committed Jan 28, 2025
1 parent c7db1f1 commit b75d958
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions internal/table/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -435,10 +435,14 @@ func newQuerySession(ctx context.Context, cc grpc.ClientConnInterface, config *c
_ = core.Close(ctx)
},
}
s.executor = queryExecutor{
core: core,
client: core.Client,
s.executor = tableExecutor{
client: s.client,
ignoreTruncated: s.config.IgnoreTruncated(),
}
//s.executor = queryExecutor{
// core: core,
// client: core.Client,
//}

return s, nil
}
Expand Down

0 comments on commit b75d958

Please sign in to comment.