-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
internal.go
969 lines (881 loc) · 29.9 KB
/
internal.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
// Copyright 2016 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package sql
import (
"context"
"math"
"strings"
"sync"
"time"
"github.com/cockroachdb/cockroach/pkg/kv"
"github.com/cockroachdb/cockroach/pkg/security"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/sql/catalog"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/catconstants"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/colinfo"
"github.com/cockroachdb/cockroach/pkg/sql/parser"
"github.com/cockroachdb/cockroach/pkg/sql/pgwire/pgwirebase"
"github.com/cockroachdb/cockroach/pkg/sql/sem/tree"
"github.com/cockroachdb/cockroach/pkg/sql/sessiondata"
"github.com/cockroachdb/cockroach/pkg/sql/sessiondatapb"
"github.com/cockroachdb/cockroach/pkg/sql/sqltelemetry"
"github.com/cockroachdb/cockroach/pkg/sql/sqlutil"
"github.com/cockroachdb/cockroach/pkg/sql/types"
"github.com/cockroachdb/cockroach/pkg/util/mon"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
"github.com/cockroachdb/cockroach/pkg/util/tracing"
"github.com/cockroachdb/errors"
"github.com/cockroachdb/logtags"
)
var _ sqlutil.InternalExecutor = &InternalExecutor{}
// InternalExecutor can be used internally by code modules to execute SQL
// statements without needing to open a SQL connection.
//
// InternalExecutor can execute one statement at a time. As of 03/2018, it
// doesn't offer a session interface for maintaining session state or for
// running explicit SQL transactions. However, it supports running SQL
// statements inside a higher-lever (KV) txn and inheriting session variables
// from another session.
//
// Methods not otherwise specified are safe for concurrent execution.
type InternalExecutor struct {
s *Server
// mon is the monitor used by all queries executed through the
// InternalExecutor.
mon *mon.BytesMonitor
// memMetrics is the memory metrics that queries executed through the
// InternalExecutor will contribute to.
memMetrics MemoryMetrics
// sessionDataStack, if not nil, represents the session variable stack used by
// statements executed on this internalExecutor. Note that queries executed
// by the executor will run on copies of the top element of this data.
sessionDataStack *sessiondata.Stack
// syntheticDescriptors stores the synthetic descriptors to be injected into
// each query/statement's descs.Collection upon initialization.
//
// Warning: Not safe for concurrent use from multiple goroutines.
syntheticDescriptors []catalog.Descriptor
}
// WithSyntheticDescriptors sets the synthetic descriptors before running the
// the provided closure and resets them afterward. Used for queries/statements
// that need to use in-memory synthetic descriptors different from descriptors
// written to disk. These descriptors override all other descriptors on the
// immutable resolution path.
//
// Warning: Not safe for concurrent use from multiple goroutines. This API is
// flawed in that the internal executor is meant to function as a stateless
// wrapper, and creates a new connExecutor and descs.Collection on each query/
// statement, so these descriptors should really be specified at a per-query/
// statement level. See #34304.
func (ie *InternalExecutor) WithSyntheticDescriptors(
descs []catalog.Descriptor, run func() error,
) error {
ie.syntheticDescriptors = descs
defer func() {
ie.syntheticDescriptors = nil
}()
return run()
}
// MakeInternalExecutor creates an InternalExecutor.
func MakeInternalExecutor(
ctx context.Context, s *Server, memMetrics MemoryMetrics, settings *cluster.Settings,
) InternalExecutor {
monitor := mon.NewMonitor(
"internal SQL executor",
mon.MemoryResource,
memMetrics.CurBytesCount,
memMetrics.MaxBytesHist,
-1, /* use default increment */
math.MaxInt64, /* noteworthy */
settings,
)
monitor.Start(ctx, s.pool, mon.BoundAccount{})
return InternalExecutor{
s: s,
mon: monitor,
memMetrics: memMetrics,
}
}
// SetSessionData binds the session variables that will be used by queries
// performed through this executor from now on. This creates a new session stack.
// It is recommended to use SetSessionDataStack.
//
// SetSessionData cannot be called concurrently with query execution.
func (ie *InternalExecutor) SetSessionData(sessionData *sessiondata.SessionData) {
ie.s.populateMinimalSessionData(sessionData)
ie.sessionDataStack = sessiondata.NewStack(sessionData)
}
// SetSessionDataStack binds the session variable stack to the internal executor.
func (ie *InternalExecutor) SetSessionDataStack(sessionDataStack *sessiondata.Stack) {
ie.sessionDataStack = sessionDataStack
}
// initConnEx creates a connExecutor and runs it on a separate goroutine. It
// takes in a StmtBuf into which commands can be pushed and a WaitGroup that
// will be signaled when connEx.run() returns.
//
// If txn is not nil, the statement will be executed in the respective txn.
//
// The ieResultWriter coordinates communicating results to the client. It may
// block execution when rows are being sent in order to prevent hazardous
// concurrency.
//
// sd will constitute the executor's session state.
func (ie *InternalExecutor) initConnEx(
ctx context.Context,
txn *kv.Txn,
w ieResultWriter,
sd *sessiondata.SessionData,
stmtBuf *StmtBuf,
wg *sync.WaitGroup,
syncCallback func([]resWithPos),
errCallback func(error),
) {
clientComm := &internalClientComm{
w: w,
// init lastDelivered below the position of the first result (0).
lastDelivered: -1,
sync: syncCallback,
}
// When the connEx is serving an internal executor, it can inherit the
// application name from an outer session. This happens e.g. during ::regproc
// casts and built-in functions that use SQL internally. In that case, we do
// not want to record statistics against the outer application name directly;
// instead we want to use a separate bucket. However we will still want to
// have separate buckets for different applications so that we can measure
// their respective "pressure" on internal queries. Hence the choice here to
// add the delegate prefix to the current app name.
var appStatsBucketName string
if !strings.HasPrefix(sd.ApplicationName, catconstants.InternalAppNamePrefix) {
appStatsBucketName = catconstants.DelegatedAppNamePrefix + sd.ApplicationName
} else {
// If this is already an "internal app", don't put more prefix.
appStatsBucketName = sd.ApplicationName
}
applicationStats := ie.s.sqlStats.GetApplicationStats(appStatsBucketName)
sds := sessiondata.NewStack(sd)
sdMutIterator := ie.s.makeSessionDataMutatorIterator(sds, nil /* sessionDefaults */)
var ex *connExecutor
if txn == nil {
ex = ie.s.newConnExecutor(
ctx,
sdMutIterator,
stmtBuf,
clientComm,
ie.memMetrics,
&ie.s.InternalMetrics,
applicationStats,
)
} else {
ex = ie.s.newConnExecutorWithTxn(
ctx,
sdMutIterator,
stmtBuf,
clientComm,
ie.mon,
ie.memMetrics,
&ie.s.InternalMetrics,
txn,
ie.syntheticDescriptors,
applicationStats,
)
}
ex.executorType = executorTypeInternal
wg.Add(1)
go func() {
if err := ex.run(ctx, ie.mon, mon.BoundAccount{} /*reserved*/, nil /* cancel */); err != nil {
sqltelemetry.RecordError(ctx, err, &ex.server.cfg.Settings.SV)
errCallback(err)
}
w.finish()
closeMode := normalClose
if txn != nil {
closeMode = externalTxnClose
}
ex.close(ctx, closeMode)
wg.Done()
}()
}
type ieIteratorResult struct {
// Exactly one of these 4 fields will be set.
row tree.Datums
rowsAffectedIncrement *int
cols colinfo.ResultColumns
err error
}
type rowsIterator struct {
r ieResultReader
rowsAffected int
resultCols colinfo.ResultColumns
// first, if non-nil, is the first object read from r. We block the return
// of the created rowsIterator in execInternal() until the producer writes
// something into the corresponding ieResultWriter because this indicates
// that the query planning has been fully performed (we want to prohibit the
// concurrent usage of the transactions).
first *ieIteratorResult
lastRow tree.Datums
lastErr error
done bool
// errCallback is an optional callback that will be called exactly once
// before an error is returned by Next() or Close().
errCallback func(err error) error
// stmtBuf will be closed on Close(). This is necessary in order to tell
// the connExecutor's goroutine to exit when the iterator's user wants to
// short-circuit the iteration (i.e. before Next() returns false).
stmtBuf *StmtBuf
// wg can be used to wait for the connExecutor's goroutine to exit.
wg *sync.WaitGroup
// sp will finished on Close().
sp *tracing.Span
}
var _ sqlutil.InternalRows = &rowsIterator{}
func (r *rowsIterator) Next(ctx context.Context) (_ bool, retErr error) {
// Due to recursive calls to Next() below, this deferred function might get
// executed multiple times, yet it is not a problem because Close() is
// idempotent and we're unsetting the error callback.
defer func() {
// If the iterator has just reached its terminal state, we'll close it
// automatically.
if r.done {
// We can ignore the returned error because Close() will update
// r.lastErr if necessary.
_ /* err */ = r.Close()
}
if r.errCallback != nil {
r.lastErr = r.errCallback(r.lastErr)
r.errCallback = nil
}
retErr = r.lastErr
}()
if r.done {
return false, r.lastErr
}
// handleDataObject processes a single object read from ieResultReader and
// returns the result to be returned by Next. It also might call Next
// recursively if the object is a piece of metadata.
handleDataObject := func(data ieIteratorResult) (bool, error) {
if data.row != nil {
r.rowsAffected++
// No need to make a copy because streamingCommandResult does that
// for us.
r.lastRow = data.row
return true, nil
}
if data.rowsAffectedIncrement != nil {
r.rowsAffected += *data.rowsAffectedIncrement
return r.Next(ctx)
}
if data.cols != nil {
// Ignore the result columns if they are already set on the
// iterator: it is possible for ROWS statement type to be executed
// in a 'rows affected' mode, in such case the correct columns are
// set manually when instantiating the iterator, but the result
// columns of the statement are also sent by SetColumns() (we need
// to keep the former).
if r.resultCols == nil {
r.resultCols = data.cols
}
return r.Next(ctx)
}
if data.err == nil {
data.err = errors.AssertionFailedf("unexpectedly empty ieIteratorResult object")
}
r.lastErr = data.err
r.done = true
return false, r.lastErr
}
if r.first != nil {
// This is the very first call to Next() and we have already buffered
// up the first piece of data before returning rowsIterator to the
// caller.
first := r.first
r.first = nil
return handleDataObject(*first)
}
var next ieIteratorResult
next, r.done, r.lastErr = r.r.nextResult(ctx)
if r.done || r.lastErr != nil {
return false, r.lastErr
}
return handleDataObject(next)
}
func (r *rowsIterator) Cur() tree.Datums {
return r.lastRow
}
func (r *rowsIterator) Close() error {
// Closing the stmtBuf will tell the connExecutor to stop executing commands
// (if it hasn't exited yet).
r.stmtBuf.Close()
// We need to finish the span but only after the connExecutor goroutine is
// done.
defer func() {
if r.sp != nil {
r.wg.Wait()
r.sp.Finish()
r.sp = nil
}
}()
// Close the ieResultReader to tell the writer that we're done.
if err := r.r.close(); err != nil && r.lastErr == nil {
r.lastErr = err
}
return r.lastErr
}
func (r *rowsIterator) Types() colinfo.ResultColumns {
return r.resultCols
}
// QueryBuffered executes the supplied SQL statement and returns the resulting
// rows (meaning all of them are buffered at once). If no user has been
// previously set through SetSessionData, the statement is executed as the root
// user.
//
// If txn is not nil, the statement will be executed in the respective txn.
//
// QueryBuffered is deprecated because it may transparently execute a query as
// root. Use QueryBufferedEx instead.
func (ie *InternalExecutor) QueryBuffered(
ctx context.Context, opName string, txn *kv.Txn, stmt string, qargs ...interface{},
) ([]tree.Datums, error) {
return ie.QueryBufferedEx(ctx, opName, txn, ie.maybeRootSessionDataOverride(opName), stmt, qargs...)
}
// QueryBufferedEx executes the supplied SQL statement and returns the resulting
// rows (meaning all of them are buffered at once).
//
// If txn is not nil, the statement will be executed in the respective txn.
//
// The fields set in session that are set override the respective fields if they
// have previously been set through SetSessionData().
func (ie *InternalExecutor) QueryBufferedEx(
ctx context.Context,
opName string,
txn *kv.Txn,
session sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) ([]tree.Datums, error) {
datums, _, err := ie.queryInternalBuffered(ctx, opName, txn, session, stmt, 0 /* limit */, qargs...)
return datums, err
}
// QueryBufferedExWithCols is like QueryBufferedEx, additionally returning the computed
// ResultColumns of the input query.
func (ie *InternalExecutor) QueryBufferedExWithCols(
ctx context.Context,
opName string,
txn *kv.Txn,
session sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) ([]tree.Datums, colinfo.ResultColumns, error) {
datums, cols, err := ie.queryInternalBuffered(ctx, opName, txn, session, stmt, 0 /* limit */, qargs...)
return datums, cols, err
}
func (ie *InternalExecutor) queryInternalBuffered(
ctx context.Context,
opName string,
txn *kv.Txn,
sessionDataOverride sessiondata.InternalExecutorOverride,
stmt string,
// Non-zero limit specifies the limit on the number of rows returned.
limit int,
qargs ...interface{},
) ([]tree.Datums, colinfo.ResultColumns, error) {
// We will run the query to completion, so we can use an async result
// channel.
rw := newAsyncIEResultChannel()
it, err := ie.execInternal(ctx, opName, rw, txn, sessionDataOverride, stmt, qargs...)
if err != nil {
return nil, nil, err
}
var rows []tree.Datums
var ok bool
for ok, err = it.Next(ctx); ok; ok, err = it.Next(ctx) {
rows = append(rows, it.Cur())
if limit != 0 && len(rows) == limit {
// We have accumulated the requested number of rows, so we can
// short-circuit the iteration.
err = it.Close()
break
}
}
if err != nil {
return nil, nil, err
}
return rows, it.Types(), nil
}
// QueryRow is like Query, except it returns a single row, or nil if not row is
// found, or an error if more that one row is returned.
//
// QueryRow is deprecated (like Query). Use QueryRowEx() instead.
func (ie *InternalExecutor) QueryRow(
ctx context.Context, opName string, txn *kv.Txn, stmt string, qargs ...interface{},
) (tree.Datums, error) {
return ie.QueryRowEx(ctx, opName, txn, ie.maybeRootSessionDataOverride(opName), stmt, qargs...)
}
// QueryRowEx is like QueryRow, but allows the caller to override some session data
// fields (e.g. the user).
//
// The fields set in session that are set override the respective fields if they
// have previously been set through SetSessionData().
func (ie *InternalExecutor) QueryRowEx(
ctx context.Context,
opName string,
txn *kv.Txn,
session sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) (tree.Datums, error) {
rows, _, err := ie.QueryRowExWithCols(ctx, opName, txn, session, stmt, qargs...)
return rows, err
}
// QueryRowExWithCols is like QueryRowEx, additionally returning the computed
// ResultColumns of the input query.
func (ie *InternalExecutor) QueryRowExWithCols(
ctx context.Context,
opName string,
txn *kv.Txn,
session sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) (tree.Datums, colinfo.ResultColumns, error) {
rows, cols, err := ie.queryInternalBuffered(ctx, opName, txn, session, stmt, 2 /* limit */, qargs...)
if err != nil {
return nil, nil, err
}
switch len(rows) {
case 0:
return nil, nil, nil
case 1:
return rows[0], cols, nil
default:
return nil, nil, &tree.MultipleResultsError{SQL: stmt}
}
}
// Exec executes the supplied SQL statement and returns the number of rows
// affected (not like the results; see Query()). If no user has been previously
// set through SetSessionData, the statement is executed as the root user.
//
// If txn is not nil, the statement will be executed in the respective txn.
//
// Exec is deprecated because it may transparently execute a query as root. Use
// ExecEx instead.
func (ie *InternalExecutor) Exec(
ctx context.Context, opName string, txn *kv.Txn, stmt string, qargs ...interface{},
) (int, error) {
return ie.ExecEx(ctx, opName, txn, ie.maybeRootSessionDataOverride(opName), stmt, qargs...)
}
// ExecEx is like Exec, but allows the caller to override some session data
// fields (e.g. the user).
//
// The fields set in session that are set override the respective fields if they
// have previously been set through SetSessionData().
func (ie *InternalExecutor) ExecEx(
ctx context.Context,
opName string,
txn *kv.Txn,
session sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) (int, error) {
// We will run the query to completion, so we can use an async result
// channel.
rw := newAsyncIEResultChannel()
it, err := ie.execInternal(ctx, opName, rw, txn, session, stmt, qargs...)
if err != nil {
return 0, err
}
// We need to exhaust the iterator so that it can count the number of rows
// affected.
var ok bool
for ok, err = it.Next(ctx); ok; ok, err = it.Next(ctx) {
}
if err != nil {
return 0, err
}
return it.rowsAffected, nil
}
// QueryIterator executes the query, returning an iterator that can be used
// to get the results. If the call is successful, the returned iterator
// *must* be closed.
//
// QueryIterator is deprecated because it may transparently execute a query
// as root. Use QueryIteratorEx instead.
func (ie *InternalExecutor) QueryIterator(
ctx context.Context, opName string, txn *kv.Txn, stmt string, qargs ...interface{},
) (sqlutil.InternalRows, error) {
return ie.QueryIteratorEx(ctx, opName, txn, ie.maybeRootSessionDataOverride(opName), stmt, qargs...)
}
// QueryIteratorEx executes the query, returning an iterator that can be used
// to get the results. If the call is successful, the returned iterator
// *must* be closed.
func (ie *InternalExecutor) QueryIteratorEx(
ctx context.Context,
opName string,
txn *kv.Txn,
session sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) (sqlutil.InternalRows, error) {
return ie.execInternal(
ctx, opName, newSyncIEResultChannel(), txn, session, stmt, qargs...,
)
}
// applyOverrides overrides the respective fields from sd for all the fields set on o.
func applyOverrides(o sessiondata.InternalExecutorOverride, sd *sessiondata.SessionData) {
if !o.User.Undefined() {
sd.UserProto = o.User.EncodeProto()
}
if o.Database != "" {
sd.Database = o.Database
}
if o.ApplicationName != "" {
sd.ApplicationName = o.ApplicationName
}
if o.SearchPath != nil {
sd.SearchPath = *o.SearchPath
}
if o.DatabaseIDToTempSchemaID != nil {
sd.DatabaseIDToTempSchemaID = o.DatabaseIDToTempSchemaID
}
}
func (ie *InternalExecutor) maybeRootSessionDataOverride(
opName string,
) sessiondata.InternalExecutorOverride {
if ie.sessionDataStack == nil {
return sessiondata.InternalExecutorOverride{
User: security.RootUserName(),
ApplicationName: catconstants.InternalAppNamePrefix + "-" + opName,
}
}
o := sessiondata.InternalExecutorOverride{}
sd := ie.sessionDataStack.Top()
if sd.User().Undefined() {
o.User = security.RootUserName()
}
if sd.ApplicationName == "" {
o.ApplicationName = catconstants.InternalAppNamePrefix + "-" + opName
}
return o
}
var rowsAffectedResultColumns = colinfo.ResultColumns{
colinfo.ResultColumn{
Name: "rows_affected",
Typ: types.Int,
},
}
// execInternal executes a statement.
//
// sessionDataOverride can be used to control select fields in the executor's
// session data. It overrides what has been previously set through
// SetSessionData(), if anything.
func (ie *InternalExecutor) execInternal(
ctx context.Context,
opName string,
rw *ieResultChannel,
txn *kv.Txn,
sessionDataOverride sessiondata.InternalExecutorOverride,
stmt string,
qargs ...interface{},
) (r *rowsIterator, retErr error) {
ctx = logtags.AddTag(ctx, "intExec", opName)
var sd *sessiondata.SessionData
if ie.sessionDataStack != nil {
// TODO(andrei): Properly clone (deep copy) ie.sessionData.
sd = ie.sessionDataStack.Top().Clone()
} else {
sd = ie.s.newSessionData(SessionArgs{})
}
applyOverrides(sessionDataOverride, sd)
sd.Internal = true
if sd.User().Undefined() {
return nil, errors.AssertionFailedf("no user specified for internal query")
}
if sd.ApplicationName == "" {
sd.ApplicationName = catconstants.InternalAppNamePrefix + "-" + opName
}
// The returned span is finished by this function in all error paths, but if
// an iterator is returned, then we transfer the responsibility of closing
// the span to the iterator. This is necessary so that the connExecutor
// exits before the span is finished.
ctx, sp := tracing.EnsureChildSpan(ctx, ie.s.cfg.AmbientCtx.Tracer, opName)
stmtBuf := NewStmtBuf()
var wg sync.WaitGroup
defer func() {
// We wrap errors with the opName, but not if they're retriable - in that
// case we need to leave the error intact so that it can be retried at a
// higher level.
//
// TODO(knz): track the callers and check whether opName could be turned
// into a type safe for reporting.
if retErr != nil {
if !errIsRetriable(retErr) {
retErr = errors.Wrapf(retErr, "%s", opName)
}
stmtBuf.Close()
wg.Wait()
sp.Finish()
} else {
// r must be non-nil here.
r.errCallback = func(err error) error {
if err != nil && !errIsRetriable(err) {
err = errors.Wrapf(err, "%s", opName)
}
return err
}
r.sp = sp
}
}()
timeReceived := timeutil.Now()
parseStart := timeReceived
parsed, err := parser.ParseOne(stmt)
if err != nil {
return nil, err
}
parseEnd := timeutil.Now()
// Transforms the args to datums. The datum types will be passed as type
// hints to the PrepareStmt command below.
datums, err := golangFillQueryArguments(qargs...)
if err != nil {
return nil, err
}
// resPos will be set to the position of the command that represents the
// statement we care about before that command is sent for execution.
var resPos CmdPos
syncCallback := func(results []resWithPos) {
// Close the stmtBuf so that the connExecutor exits its run() loop.
stmtBuf.Close()
for _, res := range results {
if res.Err() != nil {
// If we encounter an error, there's no point in looking
// further; the rest of the commands in the batch have been
// skipped.
_ = rw.addResult(ctx, ieIteratorResult{err: res.Err()})
return
}
if res.pos == resPos {
return
}
}
_ = rw.addResult(ctx, ieIteratorResult{
err: errors.AssertionFailedf(
"missing result for pos: %d and no previous error", resPos,
),
})
}
// errCallback is called if an error is returned from the connExecutor's
// run() loop.
errCallback := func(err error) {
// The connExecutor exited its run() loop, so the stmtBuf must have been
// closed. Still, since Close() is idempotent, we'll call it here too.
stmtBuf.Close()
_ = rw.addResult(ctx, ieIteratorResult{err: err})
}
ie.initConnEx(ctx, txn, rw, sd, stmtBuf, &wg, syncCallback, errCallback)
typeHints := make(tree.PlaceholderTypes, len(datums))
for i, d := range datums {
// Arg numbers start from 1.
typeHints[tree.PlaceholderIdx(i)] = d.ResolvedType()
}
if len(qargs) == 0 {
resPos = 0
if err := stmtBuf.Push(
ctx,
ExecStmt{
Statement: parsed,
TimeReceived: timeReceived,
ParseStart: parseStart,
ParseEnd: parseEnd,
}); err != nil {
return nil, err
}
} else {
resPos = 2
if err := stmtBuf.Push(
ctx,
PrepareStmt{
Statement: parsed,
ParseStart: parseStart,
ParseEnd: parseEnd,
TypeHints: typeHints,
},
); err != nil {
return nil, err
}
if err := stmtBuf.Push(ctx, BindStmt{internalArgs: datums}); err != nil {
return nil, err
}
if err := stmtBuf.Push(ctx, ExecPortal{TimeReceived: timeReceived}); err != nil {
return nil, err
}
}
if err := stmtBuf.Push(ctx, Sync{}); err != nil {
return nil, err
}
r = &rowsIterator{
r: rw,
stmtBuf: stmtBuf,
wg: &wg,
}
if parsed.AST.StatementReturnType() != tree.Rows {
r.resultCols = rowsAffectedResultColumns
}
// Now we need to block the reader goroutine until the query planning has
// been performed by the connExecutor goroutine. We do so by waiting until
// the first object is sent on the data channel.
{
var first ieIteratorResult
if first, r.done, r.lastErr = rw.firstResult(ctx); !r.done {
r.first = &first
}
}
if !r.done && r.first.cols != nil {
// If the query is of ROWS statement type, the very first thing sent on
// the channel will be the column schema. This will occur before the
// query is given to the execution engine, so we actually need to get
// the next piece from the data channel.
//
// Note that only statements of ROWS type should send the cols, but we
// choose to be defensive and don't assert that.
if r.resultCols == nil {
r.resultCols = r.first.cols
}
var first ieIteratorResult
first, r.done, r.lastErr = rw.nextResult(ctx)
if !r.done {
r.first = &first
}
}
// Note that if a context cancellation error has occurred, we still return
// the iterator and nil retErr so that the iterator is properly closed by
// the caller which will cleanup the connExecutor goroutine.
return r, nil
}
// internalClientComm is an implementation of ClientComm used by the
// InternalExecutor. Result rows are buffered in memory.
type internalClientComm struct {
// results will contain the results of the commands executed by an
// InternalExecutor.
results []resWithPos
// The results of the query execution will be written into w.
w ieResultWriter
lastDelivered CmdPos
// sync, if set, is called whenever a Sync is executed.
sync func([]resWithPos)
}
var _ ClientComm = &internalClientComm{}
type resWithPos struct {
*streamingCommandResult
pos CmdPos
}
// CreateStatementResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateStatementResult(
_ tree.Statement,
_ RowDescOpt,
pos CmdPos,
_ []pgwirebase.FormatCode,
_ sessiondatapb.DataConversionConfig,
_ *time.Location,
_ int,
_ string,
_ bool,
) CommandResult {
return icc.createRes(pos, nil /* onClose */)
}
// createRes creates a result. onClose, if not nil, is called when the result is
// closed.
func (icc *internalClientComm) createRes(pos CmdPos, onClose func()) *streamingCommandResult {
res := &streamingCommandResult{
w: icc.w,
closeCallback: func(res *streamingCommandResult, typ resCloseType) {
if typ == discarded {
return
}
icc.results = append(icc.results, resWithPos{streamingCommandResult: res, pos: pos})
if onClose != nil {
onClose()
}
},
}
return res
}
// CreatePrepareResult is part of the ClientComm interface.
func (icc *internalClientComm) CreatePrepareResult(pos CmdPos) ParseResult {
return icc.createRes(pos, nil /* onClose */)
}
// CreateBindResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateBindResult(pos CmdPos) BindResult {
return icc.createRes(pos, nil /* onClose */)
}
// CreateSyncResult is part of the ClientComm interface.
//
// The returned SyncResult will call the sync callback when its closed.
func (icc *internalClientComm) CreateSyncResult(pos CmdPos) SyncResult {
return icc.createRes(pos, func() {
results := make([]resWithPos, len(icc.results))
copy(results, icc.results)
icc.results = icc.results[:0]
icc.sync(results)
icc.lastDelivered = pos
} /* onClose */)
}
// LockCommunication is part of the ClientComm interface.
func (icc *internalClientComm) LockCommunication() ClientLock {
return (*noopClientLock)(icc)
}
// Flush is part of the ClientComm interface.
func (icc *internalClientComm) Flush(pos CmdPos) error {
return nil
}
// CreateDescribeResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateDescribeResult(pos CmdPos) DescribeResult {
return icc.createRes(pos, nil /* onClose */)
}
// CreateDeleteResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateDeleteResult(pos CmdPos) DeleteResult {
panic("unimplemented")
}
// CreateFlushResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateFlushResult(pos CmdPos) FlushResult {
panic("unimplemented")
}
// CreateErrorResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateErrorResult(pos CmdPos) ErrorResult {
panic("unimplemented")
}
// CreateEmptyQueryResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateEmptyQueryResult(pos CmdPos) EmptyQueryResult {
panic("unimplemented")
}
// CreateCopyInResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateCopyInResult(pos CmdPos) CopyInResult {
panic("unimplemented")
}
// CreateDrainResult is part of the ClientComm interface.
func (icc *internalClientComm) CreateDrainResult(pos CmdPos) DrainResult {
panic("unimplemented")
}
// noopClientLock is an implementation of ClientLock that says that no results
// have been communicated to the client.
type noopClientLock internalClientComm
// Close is part of the ClientLock interface.
func (ncl *noopClientLock) Close() {}
// ClientPos is part of the ClientLock interface.
func (ncl *noopClientLock) ClientPos() CmdPos {
return ncl.lastDelivered
}
// RTrim is part of the ClientLock interface.
func (ncl *noopClientLock) RTrim(_ context.Context, pos CmdPos) {
var i int
var r resWithPos
for i, r = range ncl.results {
if r.pos >= pos {
break
}
}
ncl.results = ncl.results[:i]
}