File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
logictest/testdata/logic_test Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4036,7 +4036,7 @@ max_connections -1
4036
4036
max_identifier_length 128
4037
4037
max_index_keys 32
4038
4038
max_prepared_transactions 2147483647
4039
- max_retries_for_read_committed 10
4039
+ max_retries_for_read_committed 100
4040
4040
node_id 1
4041
4041
null_ordered_last off
4042
4042
on_update_rehome_row_enabled on
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ query error restart transaction: TransactionRetryWithProtoRefreshError: forced b
38
38
SELECT crdb_internal.force_retry('1h':::INTERVAL)
39
39
40
40
onlyif config local-read-committed
41
- query error restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=10 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
41
+ query error restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=100 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
42
42
SELECT crdb_internal.force_retry('1h':::INTERVAL)
43
43
44
44
statement ok
Original file line number Diff line number Diff line change @@ -3030,7 +3030,7 @@ max_connections -1 N
3030
3030
max_identifier_length 128 NULL NULL NULL string
3031
3031
max_index_keys 32 NULL NULL NULL string
3032
3032
max_prepared_transactions 2147483647 NULL NULL NULL string
3033
- max_retries_for_read_committed 10 NULL NULL NULL string
3033
+ max_retries_for_read_committed 100 NULL NULL NULL string
3034
3034
node_id 1 NULL NULL NULL string
3035
3035
null_ordered_last off NULL NULL NULL string
3036
3036
on_update_rehome_row_enabled on NULL NULL NULL string
@@ -3261,7 +3261,7 @@ max_connections -1 N
3261
3261
max_identifier_length 128 NULL user NULL 128 128
3262
3262
max_index_keys 32 NULL user NULL 32 32
3263
3263
max_prepared_transactions 2147483647 NULL user NULL 2147483647 2147483647
3264
- max_retries_for_read_committed 10 NULL user NULL 10 10
3264
+ max_retries_for_read_committed 100 NULL user NULL 100 100
3265
3265
node_id 1 NULL user NULL 1 1
3266
3266
null_ordered_last off NULL user NULL off off
3267
3267
on_update_rehome_row_enabled on NULL user NULL on on
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ max_connections -1
144
144
max_identifier_length 128
145
145
max_index_keys 32
146
146
max_prepared_transactions 2147483647
147
- max_retries_for_read_committed 10
147
+ max_retries_for_read_committed 100
148
148
node_id 1
149
149
null_ordered_last off
150
150
on_update_rehome_row_enabled on
Original file line number Diff line number Diff line change @@ -1188,7 +1188,7 @@ query error pgcode 40001 restart transaction: TransactionRetryWithProtoRefreshEr
1188
1188
SELECT crdb_internal.force_retry('1h':::INTERVAL)
1189
1189
1190
1190
onlyif config local-read-committed
1191
- query error pgcode 40001 pq: restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=10 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
1191
+ query error pgcode 40001 pq: restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=100 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
1192
1192
SELECT crdb_internal.force_retry('1h':::INTERVAL)
1193
1193
1194
1194
query T
@@ -1330,7 +1330,7 @@ query error pgcode 40001 restart transaction: TransactionRetryWithProtoRefreshEr
1330
1330
SELECT crdb_internal.force_retry('1h':::INTERVAL)
1331
1331
1332
1332
onlyif config local-read-committed
1333
- query error pgcode 40001 pq: restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=10 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
1333
+ query error pgcode 40001 pq: restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=100 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
1334
1334
SELECT crdb_internal.force_retry('1h':::INTERVAL)
1335
1335
1336
1336
statement ok
@@ -1602,7 +1602,7 @@ query error pgcode 40001 restart transaction: TransactionRetryWithProtoRefreshEr
1602
1602
SELECT crdb_internal.force_retry('1h':::INTERVAL)
1603
1603
1604
1604
onlyif config local-read-committed
1605
- query error pgcode 40001 pq: restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=10 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
1605
+ query error pgcode 40001 pq: restart transaction: read committed retry limit exceeded; set by max_retries_for_read_committed=100 : TransactionRetryWithProtoRefreshError: forced by crdb_internal.force_retry\(\)
1606
1606
SELECT crdb_internal.force_retry('1h':::INTERVAL)
1607
1607
1608
1608
statement ok
Original file line number Diff line number Diff line change @@ -2275,7 +2275,7 @@ var varGen = map[string]sessionVar{
2275
2275
return strconv .FormatInt (int64 (evalCtx .SessionData ().MaxRetriesForReadCommitted ), 10 ), nil
2276
2276
},
2277
2277
GlobalDefault : func (sv * settings.Values ) string {
2278
- return "10 "
2278
+ return "100 "
2279
2279
},
2280
2280
},
2281
2281
You can’t perform that action at this time.
0 commit comments