rivet-cli 0.20.0

Rivet: PostgreSQL/MySQL/SQL Server/MongoDB → Parquet/CSV (local, S3, GCS, Azure). Crate name rivet-cli; binary rivet.
Documentation
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
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
# Mutation-testing baseline — the ADJUDICATED missed-mutant ledger.
#
# Every line is a mutant the lib cycle does not catch, with a standing verdict:
# either LIVE-GUARDED (orchestration / CDC adapters / arrow_convert — their
# oracles are the live suites, exercised by the weekly live-cycle runs) or
# ACCEPTED (operator-UX output, Display impls, log-only paths). Equivalent
# mutants are NOT here — they are excluded with reasons in .cargo/mutants.toml.
#
# The nightly mutants job diffs its missed list against this file: a missed
# mutant NOT listed here fails the job. This file only ever SHRINKS (delete
# lines as tests close them); adding a line requires the same adjudication.
# Corpus: 3766 mutants over 3 tiers, 2026-07-14 (docs/mutation-plan.md).#
# v2 (2026-07-14): + waves 4-6 leftovers (chunk planning / source builders /
# destinations / formats / plan / cmd layer) — orchestration & live-guarded
# paths plus accepted cosmetics. NOTE: entries carry file:line, so refactors
# shift them; the nightly triage re-anchors moved entries instead of treating
# them as new misses.
src/destination/cloud.rs:180:9: replace <impl super::Destination for CloudDestination<B>>::write -> Result<super::WriteOutcome> with Ok(Default::default())
src/destination/cloud.rs:233:9: replace <impl super::Destination for CloudDestination<B>>::list_prefix -> Result<Vec<super::ObjectMeta>> with Ok(vec![])
src/destination/cloud.rs:237:41: replace || with && in <impl super::Destination for CloudDestination<B>>::list_prefix
src/destination/cloud.rs:241:21: delete field recursive from struct opendal::options::ListOptions expression in <impl super::Destination for CloudDestination<B>>::list_prefix
src/destination/cloud.rs:249:21: delete field recursive from struct opendal::options::ListOptions expression in <impl super::Destination for CloudDestination<B>>::list_prefix
src/destination/cloud.rs:256:40: replace != with == in <impl super::Destination for CloudDestination<B>>::list_prefix
src/destination/cloud.rs:277:9: replace <impl super::Destination for CloudDestination<B>>::read -> Result<Vec<u8>> with Ok(vec![0])
src/destination/cloud.rs:277:9: replace <impl super::Destination for CloudDestination<B>>::read -> Result<Vec<u8>> with Ok(vec![1])
src/destination/cloud.rs:277:9: replace <impl super::Destination for CloudDestination<B>>::read -> Result<Vec<u8>> with Ok(vec![])
src/destination/cloud.rs:283:9: replace <impl super::Destination for CloudDestination<B>>::head -> Result<Option<super::ObjectMeta>> with Ok(None)
src/destination/cloud.rs:293:23: replace match guard e.kind() == opendal::ErrorKind::NotFound with false in <impl super::Destination for CloudDestination<B>>::head
src/destination/cloud.rs:293:23: replace match guard e.kind() == opendal::ErrorKind::NotFound with true in <impl super::Destination for CloudDestination<B>>::head
src/destination/cloud.rs:293:32: replace == with != in <impl super::Destination for CloudDestination<B>>::head
src/destination/cloud.rs:305:9: replace <impl super::Destination for CloudDestination<B>>::r#move -> Result<()> with Ok(())
src/destination/cloud.rs:48:38: replace * with +
src/destination/cloud.rs:48:38: replace * with /
src/destination/cloud.rs:48:45: replace * with +
src/destination/cloud.rs:48:45: replace * with /
src/destination/cloud.rs:56:9: replace <impl Drop for OneShotReservation>::drop with ()
src/destination/cloud.rs:64:5: replace reserve_oneshot -> Option<OneShotReservation> with None
src/destination/local.rs:199:23: replace match guard e.kind() == std::io::ErrorKind::NotFound with true in <impl super::Destination for LocalDestination>::head
src/destination/local.rs:215:23: replace match guard e.raw_os_error() == Some(libc::EXDEV) with false in <impl super::Destination for LocalDestination>::r#move
src/destination/local.rs:215:23: replace match guard e.raw_os_error() == Some(libc::EXDEV) with true in <impl super::Destination for LocalDestination>::r#move
src/destination/local.rs:215:40: replace == with != in <impl super::Destination for LocalDestination>::r#move
src/destination/local.rs:70:19: replace match guard e.kind() == ErrorKind::AlreadyExists with true in stage_copy
src/destination/mod.rs:106:9: replace WriteOutcome::opaque -> Self with Default::default()
src/destination/mod.rs:151:9: replace Destination::list_prefix -> Result<Vec<ObjectMeta>> with Ok(vec![])
src/destination/mod.rs:159:9: replace Destination::read -> Result<Vec<u8>> with Ok(vec![0])
src/destination/mod.rs:159:9: replace Destination::read -> Result<Vec<u8>> with Ok(vec![1])
src/destination/mod.rs:159:9: replace Destination::read -> Result<Vec<u8>> with Ok(vec![])
src/destination/mod.rs:168:9: replace Destination::head -> Result<Option<ObjectMeta>> with Ok(None)
src/destination/mod.rs:187:9: replace Destination::r#move -> Result<()> with Ok(())
src/destination/mod.rs:205:5: replace log_capabilities with ()
src/destination/mod.rs:214:25: replace && with || in log_capabilities
src/destination/mod.rs:214:40: replace > with < in log_capabilities
src/destination/mod.rs:214:40: replace > with == in log_capabilities
src/destination/mod.rs:214:40: replace > with >= in log_capabilities
src/destination/mod.rs:214:8: delete ! in log_capabilities
src/destination/s3.rs:69:17: delete field profile from struct reqsign::AwsConfig expression in <impl CloudBackend for S3Backend>::build_operator
src/destination/stdout.rs:16:9: replace <impl super::Destination for StdoutDestination>::write -> Result<super::WriteOutcome> with Ok(Default::default())
src/format/parquet.rs:85:9: replace <impl super::FormatWriter for ParquetFormatWriter>::write_batch -> Result<()> with Ok(())
src/format/parquet.rs:95:9: replace <impl super::FormatWriter for ParquetFormatWriter>::bytes_written -> u64 with 0
src/format/parquet.rs:95:9: replace <impl super::FormatWriter for ParquetFormatWriter>::bytes_written -> u64 with 1
src/manifest.rs:362:9: replace <impl std::fmt::Display for ManifestInconsistency>::fmt -> std::fmt::Result with Ok(Default::default())
src/pipeline/apply_cmd.rs:122:22: replace match guard dir.exists() with false in run_apply_command
src/pipeline/apply_cmd.rs:122:22: replace match guard dir.exists() with true in run_apply_command
src/pipeline/apply_cmd.rs:211:5: replace reject_unrecoverable_inline_url -> Result<()> with Ok(())
src/pipeline/apply_cmd.rs:27:37: replace || with && in run_apply_command
src/pipeline/apply_cmd.rs:30:17: replace || with && in run_apply_command
src/pipeline/apply_cmd.rs:75:49: replace >= with < in run_apply_command
src/pipeline/chunked/detect.rs:111:5: replace log_chunk_sparsity_at_run with ()
src/pipeline/chunked/detect.rs:114:37: replace * with + in log_chunk_sparsity_at_run
src/pipeline/chunked/detect.rs:114:37: replace * with / in log_chunk_sparsity_at_run
src/pipeline/chunked/detect.rs:115:31: replace - with + in log_chunk_sparsity_at_run
src/pipeline/chunked/detect.rs:115:31: replace - with / in log_chunk_sparsity_at_run
src/pipeline/chunked/detect.rs:115:63: replace * with + in log_chunk_sparsity_at_run
src/pipeline/chunked/detect.rs:115:63: replace * with / in log_chunk_sparsity_at_run
src/pipeline/chunked/detect.rs:271:36: replace - with + in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:271:36: replace - with / in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:326:29: replace - with + in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:326:29: replace - with / in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:364:32: replace > with < in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:364:32: replace > with == in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:364:32: replace > with >= in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:399:29: replace <= with > in detect_and_generate_chunks
src/pipeline/chunked/detect.rs:70:5: replace log_chunk_boundaries_list with ()
src/pipeline/chunked/detect.rs:79:29: replace + with * in log_chunk_boundaries_list
src/pipeline/chunked/detect.rs:92:72: replace - with + in log_chunk_boundaries_list
src/pipeline/chunked/detect.rs:92:72: replace - with / in log_chunk_boundaries_list
src/pipeline/chunked/exec.rs:101:28: replace += with *= in run_chunked_sequential
src/pipeline/chunked/exec.rs:101:28: replace += with -= in run_chunked_sequential
src/pipeline/chunked/exec.rs:110:28: replace > with < in run_chunked_sequential
src/pipeline/chunked/exec.rs:110:28: replace > with == in run_chunked_sequential
src/pipeline/chunked/exec.rs:110:28: replace > with >= in run_chunked_sequential
src/pipeline/chunked/exec.rs:164:5: replace run_chunked_parallel -> Result<()> with Ok(())
src/pipeline/chunked/exec.rs:229:44: replace && with || in run_chunked_parallel
src/pipeline/chunked/exec.rs:229:56: replace > with < in run_chunked_parallel
src/pipeline/chunked/exec.rs:229:56: replace > with == in run_chunked_parallel
src/pipeline/chunked/exec.rs:229:56: replace > with >= in run_chunked_parallel
src/pipeline/chunked/exec.rs:28:5: replace run_chunked_sequential -> Result<()> with Ok(())
src/pipeline/chunked/exec.rs:302:57: replace >= with < in run_chunked_parallel
src/pipeline/chunked/exec.rs:305:44: replace < with <= in run_chunked_parallel
src/pipeline/chunked/exec.rs:305:44: replace < with == in run_chunked_parallel
src/pipeline/chunked/exec.rs:305:44: replace < with > in run_chunked_parallel
src/pipeline/chunked/exec.rs:329:16: delete ! in run_chunked_parallel
src/pipeline/chunked/exec.rs:331:23: delete ! in run_chunked_parallel
src/pipeline/chunked/exec.rs:392:40: replace > with < in run_chunked_parallel
src/pipeline/chunked/exec.rs:392:40: replace > with == in run_chunked_parallel
src/pipeline/chunked/exec.rs:392:40: replace > with >= in run_chunked_parallel
src/pipeline/chunked/exec.rs:416:74: replace + with * in run_chunked_parallel
src/pipeline/chunked/exec.rs:416:74: replace + with - in run_chunked_parallel
src/pipeline/chunked/math.rs:134:17: replace match guard chunk_dense with false in chunk_plan_fingerprint
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(-1, -1)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(-1, 0)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(-1, 1)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(0, -1)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(0, 0)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(0, 1)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(1, -1)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(1, 0)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![(1, 1)])
src/pipeline/chunked/mod.rs:117:5: replace prepare_chunk_plan -> Result<Vec<(i64, i64)>> with Ok(vec![])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(-1, -1)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(-1, 0)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(-1, 1)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(0, -1)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(0, 0)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(0, 1)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(1, -1)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(1, 0)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![(1, 1)])
src/pipeline/chunked/mod.rs:146:5: replace prepare_chunk_plan_fresh -> Result<Vec<(i64, i64)>> with Ok(vec![])
src/pipeline/chunked/mod.rs:200:22: replace > with < in ensure_chunk_checkpoint_plan
src/pipeline/chunked/mod.rs:200:22: replace > with == in ensure_chunk_checkpoint_plan
src/pipeline/chunked/mod.rs:200:22: replace > with >= in ensure_chunk_checkpoint_plan
src/pipeline/chunked/parallel_checkpoint.rs:161:24: delete ! in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:204:40: replace > with < in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:204:40: replace > with == in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:204:40: replace > with >= in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:218:37: replace * with + in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:218:37: replace * with / in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:218:56: replace - with + in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:218:56: replace - with / in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:219:37: replace + with * in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:219:37: replace + with - in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:226:48: replace < with <= in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:226:48: replace < with == in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:226:48: replace < with > in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:227:41: replace && with || in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:266:52: replace == with != in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:299:48: replace < with <= in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:299:48: replace < with == in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:299:48: replace < with > in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:300:41: replace && with || in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:40:5: replace run_chunked_parallel_checkpoint -> Result<()> with Ok(())
src/pipeline/chunked/parallel_checkpoint.rs:443:8: delete ! in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:452:16: replace > with < in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:452:16: replace > with == in run_chunked_parallel_checkpoint
src/pipeline/chunked/parallel_checkpoint.rs:452:16: replace > with >= in run_chunked_parallel_checkpoint
src/pipeline/chunked/resume_m8.rs:286:22: replace > with >= in apply_m8_resume_decisions
src/pipeline/chunked/resume_m8.rs:296:22: replace > with >= in apply_m8_resume_decisions
src/pipeline/chunked/sequential_checkpoint.rs:121:5: replace run_chunk_with_source_retries -> Result<(usize, Vec<super::super::commit::PartRecord>)> with Ok((0, vec![]))
src/pipeline/chunked/sequential_checkpoint.rs:121:5: replace run_chunk_with_source_retries -> Result<(usize, Vec<super::super::commit::PartRecord>)> with Ok((1, vec![]))
src/pipeline/chunked/sequential_checkpoint.rs:123:20: replace > with < in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:123:20: replace > with == in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:123:20: replace > with >= in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:134:46: replace * with + in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:134:46: replace * with / in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:134:65: replace - with + in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:134:65: replace - with / in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:134:70: replace + with * in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:134:70: replace + with - in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:149:28: replace < with <= in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:149:28: replace < with == in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:149:28: replace < with > in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:149:54: replace && with || in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:170:28: replace < with <= in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:170:28: replace < with == in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:170:28: replace < with > in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:170:54: replace && with || in run_chunk_with_source_retries
src/pipeline/chunked/sequential_checkpoint.rs:189:5: replace run_chunked_sequential_checkpoint -> Result<()> with Ok(())
src/pipeline/chunked/sequential_checkpoint.rs:215:21: replace && with || in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:215:24: delete ! in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:215:8: delete ! in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:221:12: delete ! in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:261:36: replace += with *= in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:261:36: replace += with -= in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:314:16: replace > with < in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:314:16: replace > with == in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:314:16: replace > with >= in run_chunked_sequential_checkpoint
src/pipeline/chunked/sequential_checkpoint.rs:52:5: replace export_one_chunk_range -> Result<(usize, Vec<super::super::commit::PartRecord>)> with Ok((0, vec![]))
src/pipeline/chunked/sequential_checkpoint.rs:52:5: replace export_one_chunk_range -> Result<(usize, Vec<super::super::commit::PartRecord>)> with Ok((1, vec![]))
src/pipeline/chunked/sequential_checkpoint.rs:85:24: replace == with != in export_one_chunk_range
src/pipeline/finalize.rs:124:9: delete match arm "success" in finalize_manifest
src/pipeline/finalize.rs:125:9: delete match arm "failed" in finalize_manifest
src/pipeline/finalize.rs:156:25: delete ! in finalize_manifest
src/pipeline/finalize.rs:156:25: replace match guard !s.is_empty() && !t.is_empty() with false in finalize_manifest
src/pipeline/finalize.rs:156:25: replace match guard !s.is_empty() && !t.is_empty() with true in finalize_manifest
src/pipeline/finalize.rs:156:39: replace && with || in finalize_manifest
src/pipeline/finalize.rs:156:42: delete ! in finalize_manifest
src/pipeline/finalize.rs:189:8: delete ! in finalize_manifest
src/pipeline/finalize.rs:195:40: replace || with && in finalize_manifest
src/pipeline/finalize.rs:262:5: replace finalize_validate_manifest with ()
src/pipeline/finalize.rs:277:44: replace == with != in finalize_validate_manifest
src/pipeline/finalize.rs:298:16: delete ! in finalize_validate_manifest
src/pipeline/finalize.rs:298:26: replace && with || in finalize_validate_manifest
src/pipeline/finalize.rs:298:46: replace && with || in finalize_validate_manifest
src/pipeline/finalize.rs:298:67: replace == with != in finalize_validate_manifest
src/pipeline/finalize.rs:344:5: replace check_success_gate_for_resume -> Result<()> with Ok(())
src/pipeline/finalize.rs:348:44: replace == with != in check_success_gate_for_resume
src/pipeline/finalize.rs:390:5: replace warn_if_prefix_has_completed_run with ()
src/pipeline/finalize.rs:39:5: replace finalize_run_report with ()
src/pipeline/finalize.rs:404:44: replace == with != in warn_if_prefix_has_completed_run
src/pipeline/finalize.rs:453:5: replace destination_has_success -> bool with false
src/pipeline/finalize.rs:453:5: replace destination_has_success -> bool with true
src/pipeline/finalize.rs:458:41: replace == with != in destination_has_success
src/pipeline/finalize.rs:67:16: replace && with || in finalize_run_report
src/pipeline/finalize.rs:67:19: delete ! in finalize_run_report
src/pipeline/finalize.rs:70:23: replace == with != in finalize_run_report
src/pipeline/finalize.rs:70:35: replace && with || in finalize_run_report
src/pipeline/finalize.rs:70:62: replace > with < in finalize_run_report
src/pipeline/finalize.rs:70:62: replace > with == in finalize_run_report
src/pipeline/finalize.rs:70:62: replace > with >= in finalize_run_report
src/pipeline/finalize.rs:93:5: replace finalize_manifest with ()
src/pipeline/keyset.rs:118:5: replace run_keyset -> Result<()> with Ok(())
src/pipeline/keyset.rs:179:28: replace += with *= in run_keyset
src/pipeline/keyset.rs:179:28: replace += with -= in run_keyset
src/pipeline/keyset.rs:209:15: replace += with *= in run_keyset
src/pipeline/keyset.rs:209:15: replace += with -= in run_keyset
src/pipeline/keyset.rs:213:22: replace < with <= in run_keyset
src/pipeline/keyset.rs:213:22: replace < with == in run_keyset
src/pipeline/keyset.rs:213:22: replace < with > in run_keyset
src/pipeline/keyset.rs:34:9: delete match arm ExtractionStrategy::Keyset(kp) in keyset_plan
src/pipeline/keyset.rs:69:5: replace read_keyset_page -> Result<Option<KeysetPage>> with Ok(None)
src/pipeline/keyset.rs:89:13: replace == with != in read_keyset_page
src/pipeline/plan_cmd.rs:105:41: replace == with != in run_plan_command
src/pipeline/plan_cmd.rs:136:32: replace == with != in run_plan_command
src/pipeline/plan_cmd.rs:136:63: replace && with || in run_plan_command
src/pipeline/plan_cmd.rs:136:66: delete ! in run_plan_command
src/pipeline/plan_cmd.rs:146:8: delete ! in run_plan_command
src/pipeline/plan_cmd.rs:174:54: replace || with && in per_export_output_path
src/pipeline/plan_cmd.rs:197:22: replace match guard !dir.as_os_str().is_empty() with true in per_export_output_path
src/pipeline/plan_cmd.rs:243:36: replace && with || in build_plan_artifact
src/pipeline/plan_cmd.rs:243:39: delete ! in build_plan_artifact
src/pipeline/plan_cmd.rs:267:66: replace && with || in build_plan_artifact
src/pipeline/plan_cmd.rs:295:9: delete match arm ExtractionStrategy::Chunked(cp) in build_plan_artifact
src/pipeline/plan_cmd.rs:385:46: replace - with + in compute_plan_data
src/pipeline/plan_cmd.rs:385:46: replace - with / in compute_plan_data
src/pipeline/plan_cmd.rs:385:56: replace + with * in compute_plan_data
src/pipeline/plan_cmd.rs:385:56: replace + with - in compute_plan_data
src/pipeline/plan_cmd.rs:423:5: replace emit_artifacts -> Result<()> with Ok(())
src/pipeline/plan_cmd.rs:442:32: replace > with < in emit_artifacts
src/pipeline/plan_cmd.rs:442:32: replace > with == in emit_artifacts
src/pipeline/plan_cmd.rs:442:32: replace > with >= in emit_artifacts
src/pipeline/plan_cmd.rs:475:5: replace print_compact_summary with ()
src/pipeline/plan_cmd.rs:49:5: replace run_plan_command -> Result<()> with Ok(())
src/pipeline/plan_cmd.rs:521:5: replace write_plan_fields_to_config -> Result<()> with Ok(())
src/pipeline/plan_cmd.rs:532:16: replace != with == in write_plan_fields_to_config
src/pipeline/plan_cmd.rs:558:44: replace + with * in apply_field_annotations
src/pipeline/plan_cmd.rs:572:55: replace || with && in apply_field_annotations
src/pipeline/plan_cmd.rs:573:16: delete ! in apply_field_annotations
src/pipeline/plan_cmd.rs:58:30: replace == with != in run_plan_command
src/pipeline/plan_cmd.rs:600:42: replace || with && in parse_export_name
src/pipeline/plan_cmd.rs:81:39: replace > with < in run_plan_command
src/pipeline/plan_cmd.rs:81:39: replace > with == in run_plan_command
src/pipeline/plan_cmd.rs:81:39: replace > with >= in run_plan_command
src/pipeline/plan_cmd.rs:97:36: replace > with < in run_plan_command
src/pipeline/plan_cmd.rs:97:36: replace > with == in run_plan_command
src/pipeline/plan_cmd.rs:97:36: replace > with >= in run_plan_command
src/pipeline/reconcile_cmd.rs:169:34: replace == with != in reconcile_chunked_inner
src/pipeline/reconcile_cmd.rs:169:39: replace && with || in reconcile_chunked_inner
src/pipeline/reconcile_cmd.rs:169:65: replace == with != in reconcile_chunked_inner
src/pipeline/reconcile_cmd.rs:172:34: replace == with != in reconcile_chunked_inner
src/pipeline/reconcile_cmd.rs:250:5: replace emit_report -> Result<()> with Ok(())
src/pipeline/reconcile_cmd.rs:268:5: replace print_report_pretty with ()
src/pipeline/reconcile_cmd.rs:297:5: replace format_status_note -> String with "xyzzy".into()
src/pipeline/reconcile_cmd.rs:297:5: replace format_status_note -> String with String::new()
src/pipeline/reconcile_cmd.rs:40:5: replace run_reconcile_command -> Result<()> with Ok(())
src/pipeline/reconcile_cmd.rs:48:26: replace == with != in run_reconcile_command
src/pipeline/reconcile_cmd.rs:94:24: replace > with < in enforce_reconcile_exit
src/pipeline/reconcile_cmd.rs:94:24: replace > with == in enforce_reconcile_exit
src/pipeline/reconcile_cmd.rs:94:24: replace > with >= in enforce_reconcile_exit
src/pipeline/repair_cmd.rs:105:8: delete ! in run_repair_command
src/pipeline/repair_cmd.rs:134:30: replace != with == in load_or_build_reconcile
src/pipeline/repair_cmd.rs:186:13: delete match arm (Ok(s), Ok(e)) in execute_repair
src/pipeline/repair_cmd.rs:209:47: replace - with + in execute_repair
src/pipeline/repair_cmd.rs:209:47: replace - with / in execute_repair
src/pipeline/repair_cmd.rs:288:8: delete ! in execute_repair
src/pipeline/repair_cmd.rs:318:5: replace record_repair_parts_in_manifest -> Result<()> with Ok(())
src/pipeline/repair_cmd.rs:338:83: replace + with * in record_repair_parts_in_manifest
src/pipeline/repair_cmd.rs:338:83: replace + with - in record_repair_parts_in_manifest
src/pipeline/repair_cmd.rs:349:17: replace += with *= in record_repair_parts_in_manifest
src/pipeline/repair_cmd.rs:349:17: replace += with -= in record_repair_parts_in_manifest
src/pipeline/repair_cmd.rs:400:5: replace emit_plan -> Result<()> with Ok(())
src/pipeline/repair_cmd.rs:413:5: replace emit_report -> Result<()> with Ok(())
src/pipeline/repair_cmd.rs:426:5: replace print_plan_pretty with ()
src/pipeline/repair_cmd.rs:436:8: delete ! in print_plan_pretty
src/pipeline/repair_cmd.rs:442:24: replace && with || in print_plan_pretty
src/pipeline/repair_cmd.rs:449:5: replace print_report_pretty with ()
src/pipeline/repair_cmd.rs:80:5: replace run_repair_command -> Result<()> with Ok(())
src/pipeline/repair_cmd.rs:88:26: replace == with != in run_repair_command
src/pipeline/repair_cmd.rs:92:8: delete ! in run_repair_command
src/pipeline/single.rs:171:5: replace run_export -> Result<()> with Ok(())
src/pipeline/single.rs:175:36: replace == with != in run_export
src/pipeline/single.rs:175:72: replace && with || in run_export
src/pipeline/single.rs:175:94: replace > with < in run_export
src/pipeline/single.rs:175:94: replace > with == in run_export
src/pipeline/single.rs:175:94: replace > with >= in run_export
src/pipeline/single.rs:274:24: replace += with *= in run_single_export
src/pipeline/single.rs:274:24: replace += with -= in run_single_export
src/pipeline/single.rs:28:5: replace run_with_reconnect -> Result<()> with Ok(())
src/pipeline/single.rs:31:20: replace > with < in run_with_reconnect
src/pipeline/single.rs:31:20: replace > with == in run_with_reconnect
src/pipeline/single.rs:31:20: replace > with >= in run_with_reconnect
src/pipeline/single.rs:342:23: replace > with < in run_single_export
src/pipeline/single.rs:342:23: replace > with == in run_single_export
src/pipeline/single.rs:342:23: replace > with >= in run_single_export
src/pipeline/single.rs:365:48: replace > with < in run_single_export
src/pipeline/single.rs:365:48: replace > with == in run_single_export
src/pipeline/single.rs:365:48: replace > with >= in run_single_export
src/pipeline/single.rs:38:46: replace * with + in run_with_reconnect
src/pipeline/single.rs:38:46: replace * with / in run_with_reconnect
src/pipeline/single.rs:38:65: replace - with + in run_with_reconnect
src/pipeline/single.rs:38:65: replace - with / in run_with_reconnect
src/pipeline/single.rs:38:70: replace + with * in run_with_reconnect
src/pipeline/single.rs:38:70: replace + with - in run_with_reconnect
src/pipeline/single.rs:460:8: delete ! in run_single_export
src/pipeline/single.rs:473:37: replace > with < in run_single_export
src/pipeline/single.rs:473:37: replace > with == in run_single_export
src/pipeline/single.rs:473:37: replace > with >= in run_single_export
src/pipeline/single.rs:474:12: delete ! in run_single_export
src/pipeline/single.rs:538:9: replace || with && in is_port_closed
src/pipeline/single.rs:539:9: replace || with && in is_port_closed
src/pipeline/single.rs:540:9: replace || with && in is_port_closed
src/pipeline/single.rs:541:9: replace || with && in is_port_closed
src/pipeline/single.rs:74:28: replace == with != in run_with_reconnect
src/pipeline/single.rs:74:33: replace && with || in run_with_reconnect
src/pipeline/single.rs:79:28: replace < with <= in run_with_reconnect
src/pipeline/single.rs:79:28: replace < with == in run_with_reconnect
src/pipeline/single.rs:79:28: replace < with > in run_with_reconnect
src/pipeline/single.rs:79:54: replace && with || in run_with_reconnect
src/pipeline/validate_cmd.rs:116:58: replace > with < in run_validate_command
src/pipeline/validate_cmd.rs:395:54: replace && with || in verify_one_prefix
src/pipeline/validate_cmd.rs:408:34: replace == with != in verify_one_prefix
src/pipeline/validate_cmd.rs:411:31: replace match guard pc.is_ok() with false in verify_one_prefix
src/pipeline/validate_cmd.rs:411:31: replace match guard pc.is_ok() with true in verify_one_prefix
src/pipeline/validate_cmd.rs:463:5: replace render_pretty with ()
src/pipeline/validate_cmd.rs:482:12: delete ! in render_pretty
src/pipeline/validate_cmd.rs:552:8: delete ! in render_pretty
src/pipeline/validate_manifest.rs:141:32: replace > with >= in read_capped
src/pipeline/validate_manifest.rs:210:5: replace default_depth_level -> String with "xyzzy".into()
src/pipeline/validate_manifest.rs:210:5: replace default_depth_level -> String with String::new()
src/pipeline/validate_manifest.rs:324:9: replace <impl std::fmt::Display for Failure>::fmt -> std::fmt::Result with Ok(Default::default())
src/pipeline/validate_manifest.rs:55:47: replace * with +
src/pipeline/validate_manifest.rs:55:54: replace * with +
src/pipeline/validate_manifest.rs:565:17: delete field manifest_found from struct ManifestVerification expression in verify_at_destination
src/pipeline/validate_manifest.rs:566:17: delete field failures from struct ManifestVerification expression in verify_at_destination
src/pipeline/validate_manifest.rs:642:48: replace += with *= in verify_at_destination
src/pipeline/validate_manifest.rs:642:48: replace += with -= in verify_at_destination
src/pipeline/validate_manifest.rs:646:38: replace += with *= in verify_at_destination
src/pipeline/validate_manifest.rs:662:38: replace += with *= in verify_at_destination
src/pipeline/validate_manifest.rs:662:38: replace += with -= in verify_at_destination
src/pipeline/validate_manifest.rs:762:5: replace preview -> String with "xyzzy".into()
src/pipeline/validate_manifest.rs:762:5: replace preview -> String with String::new()
src/pipeline/validate_manifest.rs:763:26: replace > with < in preview
src/pipeline/validate_manifest.rs:763:26: replace > with == in preview
src/pipeline/validate_manifest.rs:763:26: replace > with >= in preview
src/plan/build.rs:155:34: replace == with != in full_strategy
src/plan/build.rs:509:5: replace parse_column_overrides_pub -> Result<crate::types::ColumnOverrides> with Ok(Default::default())
src/plan/build.rs:520:5: replace parse_column_overrides -> Result<crate::types::ColumnOverrides> with Ok(Default::default())
src/plan/contract.rs:111:9: replace IncrementalCursorPlan::column_for_storage_extract -> &str with ""
src/plan/contract.rs:111:9: replace IncrementalCursorPlan::column_for_storage_extract -> &str with "xyzzy"
src/plan/contract.rs:156:9: replace ExtractionStrategy::requires_parallel_execution -> bool with false
src/plan/contract.rs:156:9: replace ExtractionStrategy::requires_parallel_execution -> bool with true
src/plan/contract.rs:175:13: delete match arm ExtractionStrategy::Keyset(kp) in ExtractionStrategy::chunk_key
src/plan/contract.rs:190:9: replace ExtractionStrategy::incremental_plan -> Option<&IncrementalCursorPlan> with None
src/plan/contract.rs:191:13: delete match arm ExtractionStrategy::Incremental(p) in ExtractionStrategy::incremental_plan
src/plan/contract.rs:198:9: replace ExtractionStrategy::cursor_extract_column -> Option<&str> with None
src/plan/contract.rs:198:9: replace ExtractionStrategy::cursor_extract_column -> Option<&str> with Some("")
src/plan/contract.rs:198:9: replace ExtractionStrategy::cursor_extract_column -> Option<&str> with Some("xyzzy")
src/plan/contract.rs:199:13: delete match arm ExtractionStrategy::Incremental(p) in ExtractionStrategy::cursor_extract_column
src/plan/contract.rs:202:13: delete match arm ExtractionStrategy::Keyset(k) in ExtractionStrategy::cursor_extract_column
src/source/cdc/value.rs:100:9: replace RivetValue::to_json -> Json with Default::default()
src/source/cdc/value.rs:222:21: delete match arm Some(V::UInt(u)) in build_column
src/source/cdc/value.rs:222:59: replace != with == in build_column
src/source/cdc/value.rs:242:21: delete match arm Some(V::UInt(u)) in build_column
src/source/cdc/value.rs:253:21: delete match arm Some(V::Int(i)) in build_column
src/source/cdc/value.rs:31:5: replace epoch_days -> i32 with -1
src/source/cdc/value.rs:31:5: replace epoch_days -> i32 with 0
src/source/cdc/value.rs:31:5: replace epoch_days -> i32 with 1
src/source/cdc/value.rs:357:21: delete match arm Some(V::Bytes(by)) in build_column
src/source/cdc/value.rs:438:21: delete match arm V::UInt(u) in cells_checksum
src/source/cdc/value.rs:438:43: replace != with == in cells_checksum
src/source/cdc/value.rs:473:25: replace ^= with |= in cells_checksum
src/source/cdc/value.rs:476:35: replace ^= with |= in cells_checksum
src/source/cdc/value.rs:479:25: replace ^= with |= in cells_checksum
src/source/cdc/value.rs:486:25: replace ^= with |= in cells_checksum
src/source/cdc/value.rs:495:29: delete match arm (DataType::Boolean, V::Bool(b)) in cells_checksum
src/source/cdc/value.rs:496:29: delete match arm (DataType::Int16, V::Int(i)) in cells_checksum
src/source/cdc/value.rs:502:29: delete match arm (DataType::Int64, V::Int(i)) in cells_checksum
src/source/cdc/value.rs:503:29: delete match arm (DataType::Float32, V::Float(x)) in cells_checksum
src/source/cdc/value.rs:504:29: delete match arm (DataType::Float64, V::Float(x)) in cells_checksum
src/source/cdc/value.rs:505:29: delete match arm (DataType::Float64, V::Int(i)) in cells_checksum
src/source/cdc/value.rs:527:9: delete match arm RivetValue::Bool(b) in int_of
src/source/cdc/value.rs:535:9: delete match arm RivetValue::Int(i) in float_of
src/source/cdc/value.rs:649:5: replace decimal_to_i256 -> Option<arrow::datatypes::i256> with Some(Default::default())
src/source/cdc/value.rs:651:9: delete match arm RivetValue::Int(i) in decimal_to_i256
src/source/cdc/value.rs:652:9: delete match arm RivetValue::UInt(u) in decimal_to_i256
src/source/cdc/value.rs:653:33: replace match guard f.is_finite() with false in decimal_to_i256
src/source/cdc/value.rs:653:33: replace match guard f.is_finite() with true in decimal_to_i256
src/source/cdc/value.rs:667:9: delete match arm RivetValue::UInt(u) in decimal_to_i128
src/source/cdc/value.rs:671:33: replace match guard f.is_finite() with false in decimal_to_i128
src/source/cdc/value.rs:671:33: replace match guard f.is_finite() with true in decimal_to_i128
src/source/cdc/value.rs:73:36: replace * with + in RivetValue::from_mysql
src/source/cdc/value.rs:73:36: replace * with / in RivetValue::from_mysql
src/source/cdc/value.rs:73:45: replace + with * in RivetValue::from_mysql
src/source/cdc/value.rs:73:45: replace + with - in RivetValue::from_mysql
src/source/cdc/value.rs:73:57: replace * with + in RivetValue::from_mysql
src/source/cdc/value.rs:73:57: replace * with / in RivetValue::from_mysql
src/source/cdc/value.rs:73:65: replace + with * in RivetValue::from_mysql
src/source/cdc/value.rs:73:65: replace + with - in RivetValue::from_mysql
src/source/cdc/value.rs:73:78: replace * with + in RivetValue::from_mysql
src/source/cdc/value.rs:73:78: replace * with / in RivetValue::from_mysql
src/source/cdc/value.rs:73:83: replace + with * in RivetValue::from_mysql
src/source/cdc/value.rs:73:83: replace + with - in RivetValue::from_mysql
src/source/cdc/value.rs:74:25: replace * with + in RivetValue::from_mysql
src/source/cdc/value.rs:74:25: replace * with / in RivetValue::from_mysql
src/source/cdc/value.rs:75:25: replace + with * in RivetValue::from_mysql
src/source/cdc/value.rs:75:25: replace + with - in RivetValue::from_mysql
src/source/cdc/value.rs:767:40: replace + with * in parse_enum_labels
src/source/cdc/value.rs:767:59: replace + with * in parse_enum_labels
src/source/cdc/value.rs:76:50: delete - in RivetValue::from_mysql
src/source/cdc/value.rs:814:62: replace != with == in MysqlCellFix::apply
src/source/cdc/value.rs:815:63: replace != with == in MysqlCellFix::apply
src/source/cdc/value.rs:816:53: replace match guard b.len() <= 8 with true in MysqlCellFix::apply
src/source/cdc/value.rs:817:59: replace << with >> in MysqlCellFix::apply
src/source/cdc/value.rs:817:65: replace | with ^ in MysqlCellFix::apply
src/source/cdc/value.rs:826:29: replace >= with < in MysqlCellFix::apply
src/source/cdc/value.rs:826:35: replace << with >> in MysqlCellFix::apply
src/source/cdc/value.rs:826:46: replace - with + in MysqlCellFix::apply
src/source/cdc/value.rs:826:46: replace - with / in MysqlCellFix::apply
src/source/cdc/value.rs:826:51: replace << with >> in MysqlCellFix::apply
src/source/cdc/value.rs:830:63: replace match guard b.len() <= 8 with true in MysqlCellFix::apply
src/source/cdc/value.rs:835:51: replace | with ^ in MysqlCellFix::apply
src/source/cdc/value.rs:835:66: replace << with >> in MysqlCellFix::apply
src/source/cdc/value.rs:840:58: replace match guard b.len() < *w with true in MysqlCellFix::apply
src/source/cdc/value.rs:840:66: replace < with <= in MysqlCellFix::apply
src/source/cdc/value.rs:85:9: replace RivetValue::estimated_bytes -> usize with 0
src/source/cdc/value.rs:85:9: replace RivetValue::estimated_bytes -> usize with 1
src/source/cdc/value.rs:872:5: replace render_str -> String with "xyzzy".into()
src/source/cdc/value.rs:872:5: replace render_str -> String with String::new()
src/source/cdc/value.rs:93:94: replace + with * in RivetValue::estimated_bytes
src/source/cdc/value.rs:93:94: replace + with - in RivetValue::estimated_bytes
src/source/mongo/mod.rs:144:9: replace MongoSession::db -> &str with ""
src/source/mongo/mod.rs:144:9: replace MongoSession::db -> &str with "xyzzy"
src/source/mongo/mod.rs:218:9: replace MongoSource::id_span -> Result<Option<(Document, Document)>> with Ok(None)
src/source/mongo/mod.rs:218:9: replace MongoSource::id_span -> Result<Option<(Document, Document)>> with Ok(Some((Default::default(), Default::default())))
src/source/mongo/mod.rs:241:9: replace MongoSource::ensure_uniform_id_type -> Result<()> with Ok(())
src/source/mongo/mod.rs:287:9: replace MongoSource::warn_if_heterogeneous_id with ()
src/source/mongo/mod.rs:311:9: replace MongoSource::sample_id_ranges -> Result<Vec<(Bson, Bson)>> with Ok(vec![(Default::default(), Default::default())])
src/source/mongo/mod.rs:311:9: replace MongoSource::sample_id_ranges -> Result<Vec<(Bson, Bson)>> with Ok(vec![])
src/source/mongo/mod.rs:314:14: replace == with != in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:319:30: replace * with + in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:319:30: replace * with / in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:343:22: replace < with <= in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:343:22: replace < with == in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:343:22: replace < with > in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:352:31: replace * with + in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:352:31: replace * with / in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:352:43: replace / with % in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:352:43: replace / with * in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:360:30: replace != with == in MongoSource::sample_id_ranges
src/source/mongo/mod.rs:463:5: replace hetero_id_guidance -> &'static str with ""
src/source/mongo/mod.rs:463:5: replace hetero_id_guidance -> &'static str with "xyzzy"
src/source/mongo/mod.rs:538:5: replace flush -> Result<()> with Ok(())
src/source/mongo/mod.rs:549:9: replace <impl Source for MongoSource>::export -> Result<()> with Ok(())
src/source/mongo/mod.rs:610:33: replace && with || in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:610:55: replace && with || in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:610:58: delete ! in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:621:33: replace && with || in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:670:29: replace += with *= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:670:29: replace += with -= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:670:41: replace + with * in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:670:41: replace + with - in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:676:26: replace += with *= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:676:26: replace += with -= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:677:23: replace += with *= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:677:23: replace += with -= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:678:29: replace >= with < in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:678:43: replace || with && in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:678:58: replace >= with < in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:684:25: replace > with < in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:684:25: replace > with == in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:684:25: replace > with >= in <impl Source for MongoSource>::export
src/source/mongo/mod.rs:705:9: replace <impl Source for MongoSource>::type_mappings -> Result<Vec<TypeMapping>> with Ok(vec![])
src/source/mongo/mod.rs:715:12: delete ! in <impl Source for MongoSource>::query_scalar
src/source/mongo/mod.rs:715:9: replace <impl Source for MongoSource>::query_scalar -> Result<Option<String>> with Ok(None)
src/source/mongo/mod.rs:715:9: replace <impl Source for MongoSource>::query_scalar -> Result<Option<String>> with Ok(Some("xyzzy".into()))
src/source/mongo/mod.rs:715:9: replace <impl Source for MongoSource>::query_scalar -> Result<Option<String>> with Ok(Some(String::new()))
src/source/mongo/mod.rs:766:9: delete match arm Some(Bson::Double(v)) in nested_i64
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with None
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), -1)])
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 0)])
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 1)])
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), -1)])
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 0)])
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 1)])
src/source/mongo/mod.rs:819:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![])
src/source/mongo/mod.rs:837:5: replace estimated_count -> Option<i64> with None
src/source/mongo/mod.rs:837:5: replace estimated_count -> Option<i64> with Some(-1)
src/source/mongo/mod.rs:837:5: replace estimated_count -> Option<i64> with Some(0)
src/source/mongo/mod.rs:837:5: replace estimated_count -> Option<i64> with Some(1)
src/source/mssql/arrow_convert.rs:142:21: delete match arm RivetType::Unsupported{reason, ..} in mssql_columns_to_schema
src/source/mssql/arrow_convert.rs:154:8: delete ! in mssql_columns_to_schema
src/source/mssql/arrow_convert.rs:170:5: replace mssql_type_mappings -> Vec<TypeMapping> with vec![]
src/source/mssql/arrow_convert.rs:230:5: replace cell -> Option<&ColumnData<'static>> with None
src/source/mssql/arrow_convert.rs:237:5: replace decimal_scale_from_rows -> Option<u8> with None
src/source/mssql/arrow_convert.rs:237:5: replace decimal_scale_from_rows -> Option<u8> with Some(0)
src/source/mssql/arrow_convert.rs:237:5: replace decimal_scale_from_rows -> Option<u8> with Some(1)
src/source/mssql/arrow_convert.rs:238:9: delete match arm Some(ColumnData::Numeric(Some(n))) in decimal_scale_from_rows
src/source/mssql/arrow_convert.rs:320:21: delete match arm Some(ColumnData::String(Some(s))) in build_array
src/source/mssql/arrow_convert.rs:336:21: delete match arm Some(ColumnData::Binary(Some(bytes))) in build_array
src/source/mssql/arrow_convert.rs:349:21: delete match arm Some(ColumnData::Guid(Some(g))) in build_array
src/source/mssql/arrow_convert.rs:360:21: delete match arm Some(ColumnData::Numeric(Some(n))) in build_array
src/source/mssql/arrow_convert.rs:370:21: delete match arm Some(ColumnData::F64(Some(v))) in build_array
src/source/mssql/arrow_convert.rs:385:29: replace + with * in build_array
src/source/mssql/arrow_convert.rs:385:29: replace + with - in build_array
src/source/mssql/arrow_convert.rs:448:62: replace * with + in build_array
src/source/mssql/arrow_convert.rs:448:62: replace * with / in build_array
src/source/mssql/arrow_convert.rs:449:29: replace + with * in build_array
src/source/mssql/arrow_convert.rs:449:29: replace + with - in build_array
src/source/mssql/arrow_convert.rs:449:54: replace / with % in build_array
src/source/mssql/arrow_convert.rs:449:54: replace / with * in build_array
src/source/mssql/arrow_convert.rs:485:47: replace - with + in rescale_i128
src/source/mssql/arrow_convert.rs:494:49: replace - with + in rescale_i128
src/source/mssql/arrow_convert.rs:550:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::num_rows -> usize with 0
src/source/mssql/arrow_convert.rs:550:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::num_rows -> usize with 1
src/source/mssql/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::boolean -> Option<bool> with None
src/source/mssql/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::boolean -> Option<bool> with Some(false)
src/source/mssql/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::boolean -> Option<bool> with Some(true)
src/source/mssql/arrow_convert.rs:554:13: delete match arm Some(ColumnData::Bit(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::boolean
src/source/mssql/arrow_convert.rs:559:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int16 -> Option<i16> with None
src/source/mssql/arrow_convert.rs:559:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int16 -> Option<i16> with Some(-1)
src/source/mssql/arrow_convert.rs:559:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int16 -> Option<i16> with Some(0)
src/source/mssql/arrow_convert.rs:559:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int16 -> Option<i16> with Some(1)
src/source/mssql/arrow_convert.rs:560:13: delete match arm Some(ColumnData::I16(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int16
src/source/mssql/arrow_convert.rs:561:13: delete match arm Some(ColumnData::U8(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int16
src/source/mssql/arrow_convert.rs:566:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int32 -> Option<i32> with None
src/source/mssql/arrow_convert.rs:566:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int32 -> Option<i32> with Some(-1)
src/source/mssql/arrow_convert.rs:566:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int32 -> Option<i32> with Some(0)
src/source/mssql/arrow_convert.rs:566:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int32 -> Option<i32> with Some(1)
src/source/mssql/arrow_convert.rs:567:13: delete match arm Some(ColumnData::I32(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int32
src/source/mssql/arrow_convert.rs:572:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int64 -> Option<i64> with None
src/source/mssql/arrow_convert.rs:572:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int64 -> Option<i64> with Some(-1)
src/source/mssql/arrow_convert.rs:572:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int64 -> Option<i64> with Some(0)
src/source/mssql/arrow_convert.rs:572:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int64 -> Option<i64> with Some(1)
src/source/mssql/arrow_convert.rs:573:13: delete match arm Some(ColumnData::I64(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::int64
src/source/mssql/arrow_convert.rs:578:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::uint64 -> Option<u64> with Some(0)
src/source/mssql/arrow_convert.rs:578:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::uint64 -> Option<u64> with Some(1)
src/source/mssql/arrow_convert.rs:581:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float32 -> Option<f32> with None
src/source/mssql/arrow_convert.rs:581:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float32 -> Option<f32> with Some(-1.0)
src/source/mssql/arrow_convert.rs:581:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float32 -> Option<f32> with Some(0.0)
src/source/mssql/arrow_convert.rs:581:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float32 -> Option<f32> with Some(1.0)
src/source/mssql/arrow_convert.rs:582:13: delete match arm Some(ColumnData::F32(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float32
src/source/mssql/arrow_convert.rs:587:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float64 -> Option<f64> with None
src/source/mssql/arrow_convert.rs:587:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float64 -> Option<f64> with Some(-1.0)
src/source/mssql/arrow_convert.rs:587:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float64 -> Option<f64> with Some(0.0)
src/source/mssql/arrow_convert.rs:587:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float64 -> Option<f64> with Some(1.0)
src/source/mssql/arrow_convert.rs:588:13: delete match arm Some(ColumnData::F64(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::float64
src/source/mssql/arrow_convert.rs:593:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal128 -> Option<i128> with None
src/source/mssql/arrow_convert.rs:593:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal128 -> Option<i128> with Some(-1)
src/source/mssql/arrow_convert.rs:593:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal128 -> Option<i128> with Some(0)
src/source/mssql/arrow_convert.rs:593:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal128 -> Option<i128> with Some(1)
src/source/mssql/arrow_convert.rs:596:13: delete match arm Some(ColumnData::Numeric(Some(n))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal128
src/source/mssql/arrow_convert.rs:605:13: delete match arm Some(ColumnData::F64(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal128
src/source/mssql/arrow_convert.rs:610:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::date32 -> Option<i32> with None
src/source/mssql/arrow_convert.rs:610:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::date32 -> Option<i32> with Some(-1)
src/source/mssql/arrow_convert.rs:610:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::date32 -> Option<i32> with Some(0)
src/source/mssql/arrow_convert.rs:610:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::date32 -> Option<i32> with Some(1)
src/source/mssql/arrow_convert.rs:612:44: replace + with * in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::date32
src/source/mssql/arrow_convert.rs:612:44: replace + with - in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::date32
src/source/mssql/arrow_convert.rs:615:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::ts_micros -> Option<i64> with None
src/source/mssql/arrow_convert.rs:615:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::ts_micros -> Option<i64> with Some(-1)
src/source/mssql/arrow_convert.rs:615:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::ts_micros -> Option<i64> with Some(0)
src/source/mssql/arrow_convert.rs:615:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::ts_micros -> Option<i64> with Some(1)
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with None
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/mssql/arrow_convert.rs:625:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/mssql/arrow_convert.rs:626:13: delete match arm Some(ColumnData::Binary(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::binary
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with None
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/mssql/arrow_convert.rs:631:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/mssql/arrow_convert.rs:632:13: delete match arm Some(ColumnData::String(Some(v))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::utf8
src/source/mssql/arrow_convert.rs:637:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros -> Option<i64> with None
src/source/mssql/arrow_convert.rs:637:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros -> Option<i64> with Some(-1)
src/source/mssql/arrow_convert.rs:637:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros -> Option<i64> with Some(0)
src/source/mssql/arrow_convert.rs:637:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros -> Option<i64> with Some(1)
src/source/mssql/arrow_convert.rs:642:54: replace * with + in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros
src/source/mssql/arrow_convert.rs:642:54: replace * with / in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros
src/source/mssql/arrow_convert.rs:642:66: replace + with * in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros
src/source/mssql/arrow_convert.rs:642:66: replace + with - in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros
src/source/mssql/arrow_convert.rs:642:90: replace / with % in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros
src/source/mssql/arrow_convert.rs:642:90: replace / with * in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::time64_micros
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with None
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/mssql/arrow_convert.rs:646:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/mssql/arrow_convert.rs:647:13: delete match arm Some(ColumnData::Guid(Some(g))) in <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::fixed_binary
src/source/mssql/arrow_convert.rs:653:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::decimal256 -> Option<arrow::datatypes::i256> with Some(Default::default())
src/source/mssql/arrow_convert.rs:662:9: replace <impl crate::source::value_checksum::CellSource for MssqlCellSource<'_>>::list -> Option<Vec<crate::source::value_checksum::ListElem>> with Some(vec![])
src/source/mssql/cdc.rs:188:9: replace MssqlChangeStream::fill -> Result<()> with Ok(())
src/source/mssql/cdc.rs:249:26: replace match guard n.starts_with("__$") with false in MssqlChangeStream::fill
src/source/mssql/cdc.rs:249:26: replace match guard n.starts_with("__$") with true in MssqlChangeStream::fill
src/source/mssql/cdc.rs:256:16: delete ! in MssqlChangeStream::fill
src/source/mssql/cdc.rs:262:17: delete match arm ChangeOp::Delete in MssqlChangeStream::fill
src/source/mssql/cdc.rs:292:39: replace && with || in <impl ChangeStream for MssqlChangeStream>::next_change
src/source/mssql/cdc.rs:292:42: delete ! in <impl ChangeStream for MssqlChangeStream>::next_change
src/source/mssql/cdc.rs:292:9: replace <impl ChangeStream for MssqlChangeStream>::next_change -> Option<Result<ChangeEvent>> with None
src/source/mssql/cdc.rs:304:5: replace map_op -> Option<ChangeOp> with None
src/source/mssql/cdc.rs:305:9: delete match arm 1 in map_op
src/source/mssql/cdc.rs:306:9: delete match arm 2 in map_op
src/source/mssql/cdc.rs:307:9: delete match arm 4 in map_op
src/source/mssql/cdc.rs:318:9: delete match arm ColumnData::Bit(Some(b)) in cell_to_rivet
src/source/mssql/cdc.rs:319:9: delete match arm ColumnData::U8(Some(v)) in cell_to_rivet
src/source/mssql/cdc.rs:320:9: delete match arm ColumnData::I16(Some(v)) in cell_to_rivet
src/source/mssql/cdc.rs:321:9: delete match arm ColumnData::I32(Some(v)) in cell_to_rivet
src/source/mssql/cdc.rs:322:9: delete match arm ColumnData::I64(Some(v)) in cell_to_rivet
src/source/mssql/cdc.rs:323:9: delete match arm ColumnData::F32(Some(v)) in cell_to_rivet
src/source/mssql/cdc.rs:324:9: delete match arm ColumnData::F64(Some(v)) in cell_to_rivet
src/source/mssql/cdc.rs:325:9: delete match arm ColumnData::String(Some(s)) in cell_to_rivet
src/source/mssql/cdc.rs:329:9: delete match arm ColumnData::Guid(Some(g)) in cell_to_rivet
src/source/mssql/cdc.rs:330:9: delete match arm ColumnData::Binary(Some(b)) in cell_to_rivet
src/source/mssql/cdc.rs:331:9: delete match arm ColumnData::Numeric(Some(n)) in cell_to_rivet
src/source/mssql/cdc.rs:338:9: delete match arm ColumnData::DateTimeOffset(_) in cell_to_rivet
src/source/mssql/cdc.rs:343:9: delete match arm ColumnData::DateTime(_) | ColumnData::DateTime2(_) | ColumnData::SmallDateTime(_) in cell_to_rivet
src/source/mssql/cdc.rs:348:9: delete match arm ColumnData::Date(_) in cell_to_rivet
src/source/mssql/cdc.rs:354:9: delete match arm ColumnData::Time(_) in cell_to_rivet
src/source/mssql/cdc.rs:360:62: replace * with + in cell_to_rivet
src/source/mssql/cdc.rs:360:62: replace * with / in cell_to_rivet
src/source/mssql/cdc.rs:361:29: replace + with * in cell_to_rivet
src/source/mssql/cdc.rs:361:29: replace + with - in cell_to_rivet
src/source/mssql/cdc.rs:361:53: replace / with % in cell_to_rivet
src/source/mssql/cdc.rs:361:53: replace / with * in cell_to_rivet
src/source/mssql/cdc.rs:376:21: replace < with <= in numeric_to_decimal_string
src/source/mssql/cdc.rs:388:5: replace hex -> String with "xyzzy".into()
src/source/mssql/cdc.rs:388:5: replace hex -> String with String::new()
src/source/mssql/cdc.rs:406:20: replace match guard c.mode == TlsMode::Disable || c.accept_invalid_certs with false in connect
src/source/mssql/cdc.rs:406:20: replace match guard c.mode == TlsMode::Disable || c.accept_invalid_certs with true in connect
src/source/mssql/cdc.rs:406:27: replace == with != in connect
src/source/mssql/cdc.rs:406:47: replace || with && in connect
src/source/mssql/cdc.rs:428:5: replace pin_checkpoint_at_max_lsn -> Result<()> with Ok(())
src/source/mssql/cdc.rs:441:5: replace probe_max_lsn -> Option<String> with None
src/source/mssql/cdc.rs:441:5: replace probe_max_lsn -> Option<String> with Some("xyzzy".into())
src/source/mssql/cdc.rs:441:5: replace probe_max_lsn -> Option<String> with Some(String::new())
src/source/mssql/cdc.rs:441:8: delete ! in probe_max_lsn
src/source/mssql/cdc.rs:86:12: delete ! in MssqlChangeStream::open
src/source/mssql/cdc.rs:89:48: replace || with && in MssqlChangeStream::open
src/source/mssql/cdc.rs:89:53: replace == with != in MssqlChangeStream::open
src/source/mssql/cdc.rs:99:32: replace || with && in MssqlChangeStream::open
src/source/mssql/cdc.rs:99:45: replace % with + in MssqlChangeStream::open
src/source/mssql/cdc.rs:99:45: replace % with / in MssqlChangeStream::open
src/source/mssql/cdc.rs:99:49: replace != with == in MssqlChangeStream::open
src/source/mssql/cdc.rs:99:54: replace || with && in MssqlChangeStream::open
src/source/mssql/cdc.rs:99:57: delete ! in MssqlChangeStream::open
src/source/mssql/mod.rs:1010:5: replace introspect_mssql_table_for_chunking -> Result<TableIntrospection> with Ok(Default::default())
src/source/mssql/mod.rs:1074:29: delete ! in introspect_mssql_table_for_chunking
src/source/mssql/mod.rs:166:26: replace match guard cfg.mode == TlsMode::Disable || cfg.accept_invalid_certs with false in MssqlSource::connect_with_tls
src/source/mssql/mod.rs:166:26: replace match guard cfg.mode == TlsMode::Disable || cfg.accept_invalid_certs with true in MssqlSource::connect_with_tls
src/source/mssql/mod.rs:166:35: replace == with != in MssqlSource::connect_with_tls
src/source/mssql/mod.rs:166:55: replace || with && in MssqlSource::connect_with_tls
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with None
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (0, -1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (0, 0))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (0, 1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (1, -1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (1, 0))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (1, 1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (0, -1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (0, 0))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (0, 1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (1, -1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (1, 0))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (1, 1))]))
src/source/mssql/mod.rs:268:9: replace MssqlSource::mssql_decimal_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::new())
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(None)
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (0, -1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (0, 0))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (0, 1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (1, -1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (1, 0))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (1, 1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (0, -1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (0, 0))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (0, 1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (1, -1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (1, 0))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (1, 1))])))
src/source/mssql/mod.rs:298:9: replace MssqlSource::fetch_mssql_decimal_catalog_hints -> Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::new()))
src/source/mssql/mod.rs:355:35: replace > with == in catalog_decimal_to_params
src/source/mssql/mod.rs:355:35: replace > with >= in catalog_decimal_to_params
src/source/mssql/mod.rs:483:27: replace || with && in mssql_joins_or_comma
src/source/mssql/mod.rs:497:24: replace || with && in skip_mssql_optional_alias
src/source/mssql/mod.rs:509:5: replace mssql_starts_clause_boundary -> bool with false
src/source/mssql/mod.rs:509:5: replace mssql_starts_clause_boundary -> bool with true
src/source/mssql/mod.rs:533:9: replace <impl Source for MssqlSource>::export -> Result<()> with Ok(())
src/source/mssql/mod.rs:557:64: replace > with < in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:557:64: replace > with == in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:557:64: replace > with >= in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:570:28: replace > with < in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:570:28: replace > with == in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:570:28: replace > with >= in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:579:32: replace > with < in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:579:32: replace > with == in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:579:32: replace > with >= in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:606:42: replace > with < in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:606:42: replace > with == in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:606:42: replace > with >= in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:620:50: replace match guard columns.is_empty() with false in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:620:50: replace match guard columns.is_empty() with true in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:647:38: replace >= with < in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:663:32: delete ! in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:663:45: replace && with || in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:663:50: replace > with < in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:663:50: replace > with == in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:663:50: replace > with >= in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:664:66: replace / with % in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:664:66: replace / with * in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:669:56: replace * with + in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:669:56: replace * with / in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:669:63: replace * with + in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:669:63: replace * with / in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:669:71: replace / with % in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:669:71: replace / with * in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:694:16: delete ! in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:694:32: replace || with && in <impl Source for MssqlSource>::export
src/source/mssql/mod.rs:711:9: replace <impl Source for MssqlSource>::query_scalar -> Result<Option<String>> with Ok(None)
src/source/mssql/mod.rs:711:9: replace <impl Source for MssqlSource>::query_scalar -> Result<Option<String>> with Ok(Some("xyzzy".into()))
src/source/mssql/mod.rs:711:9: replace <impl Source for MssqlSource>::query_scalar -> Result<Option<String>> with Ok(Some(String::new()))
src/source/mssql/mod.rs:732:9: replace <impl Source for MssqlSource>::type_mappings -> Result<Vec<TypeMapping>> with Ok(vec![])
src/source/mssql/mod.rs:759:9: replace <impl Source for MssqlSource>::sample_pressure -> Option<u64> with None
src/source/mssql/mod.rs:759:9: replace <impl Source for MssqlSource>::sample_pressure -> Option<u64> with Some(0)
src/source/mssql/mod.rs:759:9: replace <impl Source for MssqlSource>::sample_pressure -> Option<u64> with Some(1)
src/source/mssql/mod.rs:76:12: delete ! in <impl Drop for MssqlSource>::drop
src/source/mssql/mod.rs:76:9: replace <impl Drop for MssqlSource>::drop with ()
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with None
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), -1)])
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 0)])
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 1)])
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), -1)])
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 0)])
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 1)])
src/source/mssql/mod.rs:786:9: replace MssqlSource::harm_counters -> Option<Vec<(String, i64)>> with Some(vec![])
src/source/mssql/mod.rs:805:9: replace MssqlSource::has_view_server_state -> Option<bool> with None
src/source/mssql/mod.rs:805:9: replace MssqlSource::has_view_server_state -> Option<bool> with Some(false)
src/source/mssql/mod.rs:805:9: replace MssqlSource::has_view_server_state -> Option<bool> with Some(true)
src/source/mssql/mod.rs:817:44: replace == with != in MssqlSource::has_view_server_state
src/source/mssql/mod.rs:853:78: replace != with == in MssqlSource::cdc_health
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with None
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), -1)])
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 0)])
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 1)])
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), -1)])
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 0)])
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 1)])
src/source/mssql/mod.rs:903:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![])
src/source/mssql/mod.rs:912:5: replace sample_view_server_state -> Option<bool> with None
src/source/mssql/mod.rs:912:5: replace sample_view_server_state -> Option<bool> with Some(false)
src/source/mssql/mod.rs:912:5: replace sample_view_server_state -> Option<bool> with Some(true)
src/source/mssql/mod.rs:934:5: replace emit_mssql_batch -> Result<usize> with Ok(0)
src/source/mssql/mod.rs:934:5: replace emit_mssql_batch -> Result<usize> with Ok(1)
src/source/mssql/mod.rs:945:8: delete ! in emit_mssql_batch
src/source/mssql/mod.rs:958:5: replace scalar_to_string -> Option<String> with None
src/source/mssql/mod.rs:958:5: replace scalar_to_string -> Option<String> with Some("xyzzy".into())
src/source/mssql/mod.rs:958:5: replace scalar_to_string -> Option<String> with Some(String::new())
src/source/mysql/arrow_convert.rs:1009:13: delete match arm Some(Value::Int(v)) in mysql_decimal_to_decimal256
src/source/mysql/arrow_convert.rs:100:9: delete match arm MYSQL_TYPE_TIMESTAMP | MYSQL_TYPE_TIMESTAMP2 in mysql_native_type_name
src/source/mysql/arrow_convert.rs:1020:13: delete match arm Some(Value::UInt(v)) in mysql_decimal_to_decimal256
src/source/mysql/arrow_convert.rs:103:27: replace match guard col.column_length() == 1 with false in mysql_native_type_name
src/source/mysql/arrow_convert.rs:103:27: replace match guard col.column_length() == 1 with true in mysql_native_type_name
src/source/mysql/arrow_convert.rs:103:47: replace == with != in mysql_native_type_name
src/source/mysql/arrow_convert.rs:104:9: delete match arm MYSQL_TYPE_BIT in mysql_native_type_name
src/source/mysql/arrow_convert.rs:105:9: delete match arm MYSQL_TYPE_YEAR in mysql_native_type_name
src/source/mysql/arrow_convert.rs:149:28: replace match guard col.column_length() == 1 with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:149:28: replace match guard col.column_length() == 1 with true in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:149:48: replace == with != in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:150:9: delete match arm MYSQL_TYPE_TINY in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:151:29: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:151:29: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with true in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:152:9: delete match arm MYSQL_TYPE_SHORT in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:153:29: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:153:29: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with true in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:154:28: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:154:28: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with true in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:155:9: delete match arm MYSQL_TYPE_INT24 in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:156:9: delete match arm MYSQL_TYPE_LONG in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:157:32: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:157:32: replace match guard col.flags().contains(ColumnFlags::UNSIGNED_FLAG) with true in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:160:9: delete match arm MYSQL_TYPE_LONGLONG in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:161:9: delete match arm MYSQL_TYPE_FLOAT in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:162:9: delete match arm MYSQL_TYPE_DOUBLE in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:171:9: delete match arm MYSQL_TYPE_DECIMAL | MYSQL_TYPE_NEWDECIMAL in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:172:26: delete ! in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:189:16: replace match guard col.flags().contains(ColumnFlags::ENUM_FLAG) || col.flags().contains(ColumnFlags::SET_FLAG) with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:189:16: replace match guard col.flags().contains(ColumnFlags::ENUM_FLAG) || col.flags().contains(ColumnFlags::SET_FLAG) with true in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:190:17: replace || with && in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:194:9: delete match arm MYSQL_TYPE_VARCHAR | MYSQL_TYPE_VAR_STRING | MYSQL_TYPE_STRING in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:197:36: replace == with != in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:206:9: delete match arm MYSQL_TYPE_ENUM | MYSQL_TYPE_SET in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:207:9: delete match arm MYSQL_TYPE_JSON in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:209:9: delete match arm MYSQL_TYPE_TINY_BLOB | MYSQL_TYPE_MEDIUM_BLOB | MYSQL_TYPE_LONG_BLOB | MYSQL_TYPE_BLOB in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:211:36: replace == with != in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:218:9: delete match arm MYSQL_TYPE_DATE | MYSQL_TYPE_NEWDATE in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:220:9: delete match arm MYSQL_TYPE_TIME | MYSQL_TYPE_TIME2 in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:225:9: delete match arm MYSQL_TYPE_DATETIME | MYSQL_TYPE_DATETIME2 in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:232:9: delete match arm MYSQL_TYPE_TIMESTAMP | MYSQL_TYPE_TIMESTAMP2 in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:241:27: replace match guard col.column_length() == 1 with false in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:243:9: delete match arm MYSQL_TYPE_YEAR in mysql_type_to_rivet
src/source/mysql/arrow_convert.rs:281:21: delete match arm RivetType::Unsupported{reason, ..} in mysql_schema_and_arrow_types
src/source/mysql/arrow_convert.rs:361:9: replace MysqlCellSource<'_>::is_bit -> bool with true
src/source/mysql/arrow_convert.rs:371:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::num_rows -> usize with 1
src/source/mysql/arrow_convert.rs:374:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean -> Option<bool> with None
src/source/mysql/arrow_convert.rs:374:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean -> Option<bool> with Some(false)
src/source/mysql/arrow_convert.rs:374:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean -> Option<bool> with Some(true)
src/source/mysql/arrow_convert.rs:375:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean
src/source/mysql/arrow_convert.rs:375:44: replace != with == in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean
src/source/mysql/arrow_convert.rs:376:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean
src/source/mysql/arrow_convert.rs:376:45: replace != with == in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean
src/source/mysql/arrow_convert.rs:377:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean
src/source/mysql/arrow_convert.rs:377:65: replace != with == in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::boolean
src/source/mysql/arrow_convert.rs:382:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16 -> Option<i16> with None
src/source/mysql/arrow_convert.rs:382:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16 -> Option<i16> with Some(-1)
src/source/mysql/arrow_convert.rs:382:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16 -> Option<i16> with Some(0)
src/source/mysql/arrow_convert.rs:382:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16 -> Option<i16> with Some(1)
src/source/mysql/arrow_convert.rs:383:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16
src/source/mysql/arrow_convert.rs:384:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16
src/source/mysql/arrow_convert.rs:385:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int16
src/source/mysql/arrow_convert.rs:390:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32 -> Option<i32> with None
src/source/mysql/arrow_convert.rs:390:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32 -> Option<i32> with Some(-1)
src/source/mysql/arrow_convert.rs:390:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32 -> Option<i32> with Some(0)
src/source/mysql/arrow_convert.rs:390:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32 -> Option<i32> with Some(1)
src/source/mysql/arrow_convert.rs:391:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32
src/source/mysql/arrow_convert.rs:392:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32
src/source/mysql/arrow_convert.rs:393:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int32
src/source/mysql/arrow_convert.rs:399:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int64
src/source/mysql/arrow_convert.rs:400:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::int64
src/source/mysql/arrow_convert.rs:406:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64 -> Option<u64> with None
src/source/mysql/arrow_convert.rs:406:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64 -> Option<u64> with Some(0)
src/source/mysql/arrow_convert.rs:406:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64 -> Option<u64> with Some(1)
src/source/mysql/arrow_convert.rs:407:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64
src/source/mysql/arrow_convert.rs:408:36: replace match guard *v >= 0 with false in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64
src/source/mysql/arrow_convert.rs:408:36: replace match guard *v >= 0 with true in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64
src/source/mysql/arrow_convert.rs:408:39: replace >= with < in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64
src/source/mysql/arrow_convert.rs:409:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::uint64
src/source/mysql/arrow_convert.rs:414:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32 -> Option<f32> with None
src/source/mysql/arrow_convert.rs:414:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32 -> Option<f32> with Some(-1.0)
src/source/mysql/arrow_convert.rs:414:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32 -> Option<f32> with Some(0.0)
src/source/mysql/arrow_convert.rs:414:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32 -> Option<f32> with Some(1.0)
src/source/mysql/arrow_convert.rs:415:13: delete match arm Some(Value::Float(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32
src/source/mysql/arrow_convert.rs:416:13: delete match arm Some(Value::Double(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32
src/source/mysql/arrow_convert.rs:417:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float32
src/source/mysql/arrow_convert.rs:422:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64 -> Option<f64> with None
src/source/mysql/arrow_convert.rs:422:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64 -> Option<f64> with Some(-1.0)
src/source/mysql/arrow_convert.rs:422:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64 -> Option<f64> with Some(0.0)
src/source/mysql/arrow_convert.rs:422:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64 -> Option<f64> with Some(1.0)
src/source/mysql/arrow_convert.rs:423:13: delete match arm Some(Value::Float(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64
src/source/mysql/arrow_convert.rs:424:13: delete match arm Some(Value::Double(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64
src/source/mysql/arrow_convert.rs:425:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::float64
src/source/mysql/arrow_convert.rs:430:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128 -> Option<i128> with None
src/source/mysql/arrow_convert.rs:430:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128 -> Option<i128> with Some(-1)
src/source/mysql/arrow_convert.rs:430:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128 -> Option<i128> with Some(0)
src/source/mysql/arrow_convert.rs:430:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128 -> Option<i128> with Some(1)
src/source/mysql/arrow_convert.rs:432:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128
src/source/mysql/arrow_convert.rs:433:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128
src/source/mysql/arrow_convert.rs:434:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal128
src/source/mysql/arrow_convert.rs:443:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::date32 -> Option<i32> with None
src/source/mysql/arrow_convert.rs:443:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::date32 -> Option<i32> with Some(-1)
src/source/mysql/arrow_convert.rs:443:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::date32 -> Option<i32> with Some(0)
src/source/mysql/arrow_convert.rs:443:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::date32 -> Option<i32> with Some(1)
src/source/mysql/arrow_convert.rs:444:13: delete match arm Some(Value::Date(y, m, d, _, _, _, _)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::date32
src/source/mysql/arrow_convert.rs:447:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::date32
src/source/mysql/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::ts_micros -> Option<i64> with None
src/source/mysql/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::ts_micros -> Option<i64> with Some(-1)
src/source/mysql/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::ts_micros -> Option<i64> with Some(0)
src/source/mysql/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::ts_micros -> Option<i64> with Some(1)
src/source/mysql/arrow_convert.rs:457:13: delete match arm Some(Value::Date(y, mo, d, h, mi, sx, us)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::ts_micros
src/source/mysql/arrow_convert.rs:461:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::ts_micros
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with None
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/mysql/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/mysql/arrow_convert.rs:469:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::binary
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with None
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/mysql/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/mysql/arrow_convert.rs:475:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8
src/source/mysql/arrow_convert.rs:479:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8
src/source/mysql/arrow_convert.rs:47:5: replace mysql_native_type_name -> String with "xyzzy".into()
src/source/mysql/arrow_convert.rs:47:5: replace mysql_native_type_name -> String with String::new()
src/source/mysql/arrow_convert.rs:480:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8
src/source/mysql/arrow_convert.rs:481:13: delete match arm Some(Value::Float(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8
src/source/mysql/arrow_convert.rs:482:13: delete match arm Some(Value::Double(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8
src/source/mysql/arrow_convert.rs:483:13: delete match arm Some(Value::Date(y, m, d, hh, mi, sx, us)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::utf8
src/source/mysql/arrow_convert.rs:490:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros -> Option<i64> with None
src/source/mysql/arrow_convert.rs:490:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros -> Option<i64> with Some(-1)
src/source/mysql/arrow_convert.rs:490:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros -> Option<i64> with Some(0)
src/source/mysql/arrow_convert.rs:490:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros -> Option<i64> with Some(1)
src/source/mysql/arrow_convert.rs:491:13: delete match arm Some(Value::Time(neg, days, h, m, s, us)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:35: replace * with + in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:35: replace * with / in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:44: replace + with * in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:44: replace + with - in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:56: replace * with + in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:56: replace * with / in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:64: replace + with * in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:64: replace + with - in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:76: replace * with + in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:76: replace * with / in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:81: replace + with * in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:493:81: replace + with - in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:494:25: replace * with + in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:494:25: replace * with / in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:495:25: replace + with * in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:495:25: replace + with - in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:496:32: delete - in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:498:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::time64_micros
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with None
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/mysql/arrow_convert.rs:505:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/mysql/arrow_convert.rs:506:39: replace match guard bv.len() == 16 with false in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary
src/source/mysql/arrow_convert.rs:506:39: replace match guard bv.len() == 16 with true in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary
src/source/mysql/arrow_convert.rs:506:48: replace == with != in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary
src/source/mysql/arrow_convert.rs:507:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::fixed_binary
src/source/mysql/arrow_convert.rs:514:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal256 -> Option<arrow::datatypes::i256> with None
src/source/mysql/arrow_convert.rs:514:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal256 -> Option<arrow::datatypes::i256> with Some(Default::default())
src/source/mysql/arrow_convert.rs:516:13: delete match arm Some(Value::Bytes(bv)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal256
src/source/mysql/arrow_convert.rs:519:13: delete match arm Some(Value::Int(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal256
src/source/mysql/arrow_convert.rs:520:13: delete match arm Some(Value::UInt(v)) in <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::decimal256
src/source/mysql/arrow_convert.rs:531:9: replace <impl crate::source::value_checksum::CellSource for MysqlCellSource<'_>>::list -> Option<Vec<crate::source::value_checksum::ListElem>> with Some(vec![])
src/source/mysql/arrow_convert.rs:536:5: replace bytes_to_str -> Option<&str> with None
src/source/mysql/arrow_convert.rs:556:47: replace | with ^ in bit_bytes_to_u64
src/source/mysql/arrow_convert.rs:581:5: replace parse_time_str_to_micros -> Option<i64> with None
src/source/mysql/arrow_convert.rs:581:5: replace parse_time_str_to_micros -> Option<i64> with Some(-1)
src/source/mysql/arrow_convert.rs:581:5: replace parse_time_str_to_micros -> Option<i64> with Some(0)
src/source/mysql/arrow_convert.rs:581:5: replace parse_time_str_to_micros -> Option<i64> with Some(1)
src/source/mysql/arrow_convert.rs:587:32: replace + with * in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:587:32: replace + with - in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:590:34: replace - with + in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:590:34: replace - with / in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:591:27: replace * with + in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:591:27: replace * with / in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:20: replace * with + in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:20: replace * with / in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:28: replace + with * in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:28: replace + with - in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:32: replace * with + in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:32: replace * with / in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:37: replace + with * in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:37: replace + with - in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:42: replace * with + in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:42: replace * with / in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:54: replace + with * in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:599:54: replace + with - in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:600:19: delete - in parse_time_str_to_micros
src/source/mysql/arrow_convert.rs:619:9: delete match arm DataType::Boolean in build_array
src/source/mysql/arrow_convert.rs:623:21: delete match arm Some(Value::Int(v)) in build_array
src/source/mysql/arrow_convert.rs:623:62: replace != with == in build_array
src/source/mysql/arrow_convert.rs:624:21: delete match arm Some(Value::UInt(v)) in build_array
src/source/mysql/arrow_convert.rs:624:63: replace != with == in build_array
src/source/mysql/arrow_convert.rs:626:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:626:83: replace != with == in build_array
src/source/mysql/arrow_convert.rs:62:28: replace match guard col.column_length() == 1 with false in mysql_native_type_name
src/source/mysql/arrow_convert.rs:62:28: replace match guard col.column_length() == 1 with true in mysql_native_type_name
src/source/mysql/arrow_convert.rs:62:48: replace == with != in mysql_native_type_name
src/source/mysql/arrow_convert.rs:632:9: delete match arm DataType::Int16 in build_array
src/source/mysql/arrow_convert.rs:636:21: delete match arm Some(Value::Int(v)) in build_array
src/source/mysql/arrow_convert.rs:637:21: delete match arm Some(Value::UInt(v)) in build_array
src/source/mysql/arrow_convert.rs:63:9: delete match arm MYSQL_TYPE_TINY in mysql_native_type_name
src/source/mysql/arrow_convert.rs:640:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:649:9: delete match arm DataType::Int32 in build_array
src/source/mysql/arrow_convert.rs:64:9: delete match arm MYSQL_TYPE_SHORT in mysql_native_type_name
src/source/mysql/arrow_convert.rs:653:21: delete match arm Some(Value::Int(v)) in build_array
src/source/mysql/arrow_convert.rs:654:21: delete match arm Some(Value::UInt(v)) in build_array
src/source/mysql/arrow_convert.rs:655:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:65:9: delete match arm MYSQL_TYPE_INT24 | MYSQL_TYPE_LONG in mysql_native_type_name
src/source/mysql/arrow_convert.rs:664:9: delete match arm DataType::UInt64 in build_array
src/source/mysql/arrow_convert.rs:668:21: delete match arm Some(Value::UInt(v)) in build_array
src/source/mysql/arrow_convert.rs:669:44: replace match guard *v >= 0 with false in build_array
src/source/mysql/arrow_convert.rs:669:44: replace match guard *v >= 0 with true in build_array
src/source/mysql/arrow_convert.rs:669:47: replace >= with < in build_array
src/source/mysql/arrow_convert.rs:66:9: delete match arm MYSQL_TYPE_LONGLONG in mysql_native_type_name
src/source/mysql/arrow_convert.rs:670:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:67:9: delete match arm MYSQL_TYPE_FLOAT in mysql_native_type_name
src/source/mysql/arrow_convert.rs:686:21: delete match arm Some(Value::Int(v)) in build_array
src/source/mysql/arrow_convert.rs:68:9: delete match arm MYSQL_TYPE_DOUBLE in mysql_native_type_name
src/source/mysql/arrow_convert.rs:690:21: delete match arm Some(Value::UInt(v)) in build_array
src/source/mysql/arrow_convert.rs:69:9: delete match arm MYSQL_TYPE_DECIMAL | MYSQL_TYPE_NEWDECIMAL in mysql_native_type_name
src/source/mysql/arrow_convert.rs:700:9: delete match arm DataType::Float32 in build_array
src/source/mysql/arrow_convert.rs:704:21: delete match arm Some(Value::Float(v)) in build_array
src/source/mysql/arrow_convert.rs:705:21: delete match arm Some(Value::Double(v)) in build_array
src/source/mysql/arrow_convert.rs:706:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:715:9: delete match arm DataType::Float64 in build_array
src/source/mysql/arrow_convert.rs:719:21: delete match arm Some(Value::Float(v)) in build_array
src/source/mysql/arrow_convert.rs:720:21: delete match arm Some(Value::Double(v)) in build_array
src/source/mysql/arrow_convert.rs:721:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:730:9: delete match arm DataType::Utf8 in build_array
src/source/mysql/arrow_convert.rs:740:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:750:21: delete match arm Some(Value::Int(v)) in build_array
src/source/mysql/arrow_convert.rs:751:21: delete match arm Some(Value::UInt(v)) in build_array
src/source/mysql/arrow_convert.rs:752:21: delete match arm Some(Value::Float(v)) in build_array
src/source/mysql/arrow_convert.rs:753:21: delete match arm Some(Value::Double(v)) in build_array
src/source/mysql/arrow_convert.rs:754:21: delete match arm Some(Value::Date(y, m, d, h, mi, s, us)) in build_array
src/source/mysql/arrow_convert.rs:764:9: delete match arm DataType::Binary in build_array
src/source/mysql/arrow_convert.rs:768:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:76:16: replace match guard col.flags().contains(ColumnFlags::ENUM_FLAG) with false in mysql_native_type_name
src/source/mysql/arrow_convert.rs:76:16: replace match guard col.flags().contains(ColumnFlags::ENUM_FLAG) with true in mysql_native_type_name
src/source/mysql/arrow_convert.rs:784:9: delete match arm DataType::FixedSizeBinary(16) in build_array
src/source/mysql/arrow_convert.rs:788:47: replace match guard bv.len() == 16 with false in build_array
src/source/mysql/arrow_convert.rs:788:47: replace match guard bv.len() == 16 with true in build_array
src/source/mysql/arrow_convert.rs:788:56: replace == with != in build_array
src/source/mysql/arrow_convert.rs:793:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:807:9: delete match arm DataType::Time64(TimeUnit::Microsecond) in build_array
src/source/mysql/arrow_convert.rs:812:21: delete match arm Some(Value::Time(neg, days, h, m, s, us)) in build_array
src/source/mysql/arrow_convert.rs:813:54: replace * with + in build_array
src/source/mysql/arrow_convert.rs:813:54: replace * with / in build_array
src/source/mysql/arrow_convert.rs:814:29: replace + with * in build_array
src/source/mysql/arrow_convert.rs:814:29: replace + with - in build_array
src/source/mysql/arrow_convert.rs:814:41: replace * with + in build_array
src/source/mysql/arrow_convert.rs:814:41: replace * with / in build_array
src/source/mysql/arrow_convert.rs:815:29: replace + with * in build_array
src/source/mysql/arrow_convert.rs:815:29: replace + with - in build_array
src/source/mysql/arrow_convert.rs:815:41: replace * with + in build_array
src/source/mysql/arrow_convert.rs:815:41: replace * with / in build_array
src/source/mysql/arrow_convert.rs:816:29: replace + with * in build_array
src/source/mysql/arrow_convert.rs:816:29: replace + with - in build_array
src/source/mysql/arrow_convert.rs:817:29: replace * with + in build_array
src/source/mysql/arrow_convert.rs:817:29: replace * with / in build_array
src/source/mysql/arrow_convert.rs:818:29: replace + with * in build_array
src/source/mysql/arrow_convert.rs:818:29: replace + with - in build_array
src/source/mysql/arrow_convert.rs:819:50: delete - in build_array
src/source/mysql/arrow_convert.rs:81:16: replace match guard col.flags().contains(ColumnFlags::SET_FLAG) with false in mysql_native_type_name
src/source/mysql/arrow_convert.rs:81:16: replace match guard col.flags().contains(ColumnFlags::SET_FLAG) with true in mysql_native_type_name
src/source/mysql/arrow_convert.rs:821:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:834:9: delete match arm DataType::Date32 in build_array
src/source/mysql/arrow_convert.rs:838:21: delete match arm Some(Value::Date(y, m, d, _, _, _, _)) in build_array
src/source/mysql/arrow_convert.rs:841:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:864:9: delete match arm DataType::Timestamp(TimeUnit::Microsecond, tz) in build_array
src/source/mysql/arrow_convert.rs:869:21: delete match arm Some(Value::Date(y, mo, d, h, mi, s, us)) in build_array
src/source/mysql/arrow_convert.rs:873:21: delete match arm Some(Value::Bytes(bv)) in build_array
src/source/mysql/arrow_convert.rs:87:30: replace match guard col.character_set() == 63 with false in mysql_native_type_name
src/source/mysql/arrow_convert.rs:87:30: replace match guard col.character_set() == 63 with true in mysql_native_type_name
src/source/mysql/arrow_convert.rs:87:50: replace == with != in mysql_native_type_name
src/source/mysql/arrow_convert.rs:88:34: replace match guard col.character_set() == 63 with false in mysql_native_type_name
src/source/mysql/arrow_convert.rs:88:34: replace match guard col.character_set() == 63 with true in mysql_native_type_name
src/source/mysql/arrow_convert.rs:88:54: replace == with != in mysql_native_type_name
src/source/mysql/arrow_convert.rs:892:9: delete match arm DataType::Decimal128(p, s) in build_array
src/source/mysql/arrow_convert.rs:893:9: delete match arm DataType::Decimal256(p, s) in build_array
src/source/mysql/arrow_convert.rs:89:9: delete match arm MYSQL_TYPE_STRING in mysql_native_type_name
src/source/mysql/arrow_convert.rs:90:9: delete match arm MYSQL_TYPE_VARCHAR | MYSQL_TYPE_VAR_STRING in mysql_native_type_name
src/source/mysql/arrow_convert.rs:91:9: delete match arm MYSQL_TYPE_ENUM in mysql_native_type_name
src/source/mysql/arrow_convert.rs:924:13: delete match arm Some(Value::Bytes(bv)) in mysql_decimal_to_decimal128
src/source/mysql/arrow_convert.rs:92:9: delete match arm MYSQL_TYPE_SET in mysql_native_type_name
src/source/mysql/arrow_convert.rs:938:13: delete match arm Some(Value::Int(v)) in mysql_decimal_to_decimal128
src/source/mysql/arrow_convert.rs:93:9: delete match arm MYSQL_TYPE_JSON in mysql_native_type_name
src/source/mysql/arrow_convert.rs:949:13: delete match arm Some(Value::UInt(v)) in mysql_decimal_to_decimal128
src/source/mysql/arrow_convert.rs:94:9: delete match arm MYSQL_TYPE_TINY_BLOB | MYSQL_TYPE_MEDIUM_BLOB | MYSQL_TYPE_LONG_BLOB | MYSQL_TYPE_BLOB in mysql_native_type_name
src/source/mysql/arrow_convert.rs:97:9: delete match arm MYSQL_TYPE_DATE | MYSQL_TYPE_NEWDATE in mysql_native_type_name
src/source/mysql/arrow_convert.rs:98:9: delete match arm MYSQL_TYPE_TIME | MYSQL_TYPE_TIME2 in mysql_native_type_name
src/source/mysql/arrow_convert.rs:995:13: delete match arm Some(Value::Bytes(bv)) in mysql_decimal_to_decimal256
src/source/mysql/arrow_convert.rs:99:9: delete match arm MYSQL_TYPE_DATETIME | MYSQL_TYPE_DATETIME2 in mysql_native_type_name
src/source/mysql/cdc.rs:124:9: replace MysqlChangeStream::pin_checkpoint_at_current -> Result<()> with Ok(())
src/source/mysql/cdc.rs:183:9: replace MysqlChangeStream::fill -> Result<bool> with Ok(false)
src/source/mysql/cdc.rs:183:9: replace MysqlChangeStream::fill -> Result<bool> with Ok(true)
src/source/mysql/cdc.rs:190:13: delete match arm Some(EventData::RotateEvent(re)) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:193:13: delete match arm Some(EventData::TableMapEvent(tme)) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:197:25: delete match arm Ok(mysql::binlog::events::OptionalMetadataField::ColumnName(names)) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:211:13: delete match arm Some(EventData::RowsEvent(re)) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:213:21: delete match arm RowsEventData::WriteRowsEvent(_) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:214:21: delete match arm RowsEventData::UpdateRowsEvent(_) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:215:21: delete match arm RowsEventData::DeleteRowsEvent(_) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:239:34: replace > with < in MysqlChangeStream::fill
src/source/mysql/cdc.rs:239:34: replace > with == in MysqlChangeStream::fill
src/source/mysql/cdc.rs:239:34: replace > with >= in MysqlChangeStream::fill
src/source/mysql/cdc.rs:250:13: delete match arm Some(EventData::XidEvent(_)) in MysqlChangeStream::fill
src/source/mysql/cdc.rs:256:38: replace + with * in MysqlChangeStream::fill
src/source/mysql/cdc.rs:256:38: replace + with - in MysqlChangeStream::fill
src/source/mysql/cdc.rs:256:42: replace == with != in MysqlChangeStream::fill
src/source/mysql/cdc.rs:272:22: replace match guard cfg.mode.is_enforced() with false in connect_conn
src/source/mysql/cdc.rs:272:22: replace match guard cfg.mode.is_enforced() with true in connect_conn
src/source/mysql/cdc.rs:301:5: replace render_row -> Vec<RivetValue> with vec![]
src/source/mysql/cdc.rs:324:5: replace mysql_style_json -> String with "xyzzy".into()
src/source/mysql/cdc.rs:324:5: replace mysql_style_json -> String with String::new()
src/source/mysql/cdc.rs:331:13: replace mysql_style_json::<impl serde_json::ser::Formatter for MySqlFmt>::begin_array_value -> std::io::Result<()> with Ok(())
src/source/mysql/cdc.rs:331:16: delete ! in mysql_style_json::<impl serde_json::ser::Formatter for MySqlFmt>::begin_array_value
src/source/mysql/cdc.rs:341:13: replace mysql_style_json::<impl serde_json::ser::Formatter for MySqlFmt>::begin_object_key -> std::io::Result<()> with Ok(())
src/source/mysql/cdc.rs:341:16: delete ! in mysql_style_json::<impl serde_json::ser::Formatter for MySqlFmt>::begin_object_key
src/source/mysql/cdc.rs:350:13: replace mysql_style_json::<impl serde_json::ser::Formatter for MySqlFmt>::begin_object_value -> std::io::Result<()> with Ok(())
src/source/mysql/cdc.rs:366:9: replace <impl Iterator for MysqlChangeStream>::next -> Option<Self::Item> with None
src/source/mysql/cdc.rs:381:9: replace <impl ChangeStream for MysqlChangeStream>::next_change -> Option<Result<ChangeEvent>> with None
src/source/mysql/cdc.rs:98:9: replace MysqlChangeStream::current_coordinates -> Result<(String, u64)> with Ok(("xyzzy".into(), 0))
src/source/mysql/cdc.rs:98:9: replace MysqlChangeStream::current_coordinates -> Result<(String, u64)> with Ok(("xyzzy".into(), 1))
src/source/mysql/cdc.rs:98:9: replace MysqlChangeStream::current_coordinates -> Result<(String, u64)> with Ok((String::new(), 0))
src/source/mysql/cdc.rs:98:9: replace MysqlChangeStream::current_coordinates -> Result<(String, u64)> with Ok((String::new(), 1))
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with None
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), -1)])
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 0)])
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 1)])
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), -1)])
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 0)])
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 1)])
src/source/mysql/mod.rs:109:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![])
src/source/mysql/mod.rs:151:26: replace match guard cfg.mode.is_enforced() with false in MysqlSource::connect_with_tls
src/source/mysql/mod.rs:151:26: replace match guard cfg.mode.is_enforced() with true in MysqlSource::connect_with_tls
src/source/mysql/mod.rs:186:22: replace match guard cfg.mode.is_enforced() with false in connect_pool
src/source/mysql/mod.rs:186:22: replace match guard cfg.mode.is_enforced() with true in connect_pool
src/source/mysql/mod.rs:252:5: replace introspect_mysql_table_for_chunking -> Result<crate::source::TableIntrospection> with Ok(Default::default())
src/source/mysql/mod.rs:277:38: replace > with < in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:277:38: replace > with == in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:277:38: replace > with >= in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:279:33: replace > with < in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:279:33: replace > with == in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:279:33: replace > with >= in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:280:31: replace / with % in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:280:31: replace / with * in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:299:47: replace > with < in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:299:47: replace > with == in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:299:47: replace > with >= in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:334:24: replace match guard matches!( t.as_str(), "tinyint" | "smallint" | "mediumint" | "int" | "bigint" ) with false in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:334:24: replace match guard matches!( t.as_str(), "tinyint" | "smallint" | "mediumint" | "int" | "bigint" ) with true in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:378:41: replace == with != in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:379:27: replace == with != in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:380:17: replace && with || in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:381:17: replace && with || in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:381:20: delete ! in introspect_mysql_table_for_chunking
src/source/mysql/mod.rs:397:5: replace build_mysql_ssl_opts -> SslOpts with Default::default()
src/source/mysql/mod.rs:471:9: replace <impl Drop for MysqlSessionGuard<'_>>::drop with ()
src/source/mysql/mod.rs:499:5: replace mysql_run_export -> Result<usize> with Ok(0)
src/source/mysql/mod.rs:499:5: replace mysql_run_export -> Result<usize> with Ok(1)
src/source/mysql/mod.rs:552:26: replace >= with < in mysql_run_export
src/source/mysql/mod.rs:553:24: replace += with *= in mysql_run_export
src/source/mysql/mod.rs:553:24: replace += with -= in mysql_run_export
src/source/mysql/mod.rs:562:16: delete ! in mysql_run_export
src/source/mysql/mod.rs:562:36: replace && with || in mysql_run_export
src/source/mysql/mod.rs:562:50: replace > with < in mysql_run_export
src/source/mysql/mod.rs:562:50: replace > with == in mysql_run_export
src/source/mysql/mod.rs:562:50: replace > with >= in mysql_run_export
src/source/mysql/mod.rs:564:50: replace / with % in mysql_run_export
src/source/mysql/mod.rs:564:50: replace / with * in mysql_run_export
src/source/mysql/mod.rs:568:40: replace * with + in mysql_run_export
src/source/mysql/mod.rs:568:40: replace * with / in mysql_run_export
src/source/mysql/mod.rs:568:47: replace * with + in mysql_run_export
src/source/mysql/mod.rs:568:47: replace * with / in mysql_run_export
src/source/mysql/mod.rs:568:55: replace / with % in mysql_run_export
src/source/mysql/mod.rs:568:55: replace / with * in mysql_run_export
src/source/mysql/mod.rs:605:8: delete ! in mysql_run_export
src/source/mysql/mod.rs:606:20: replace += with *= in mysql_run_export
src/source/mysql/mod.rs:606:20: replace += with -= in mysql_run_export
src/source/mysql/mod.rs:621:9: replace <impl super::Source for MysqlSource>::export -> Result<()> with Ok(())
src/source/mysql/mod.rs:636:63: replace > with < in <impl super::Source for MysqlSource>::export
src/source/mysql/mod.rs:636:63: replace > with == in <impl super::Source for MysqlSource>::export
src/source/mysql/mod.rs:636:63: replace > with >= in <impl super::Source for MysqlSource>::export
src/source/mysql/mod.rs:637:57: replace * with + in <impl super::Source for MysqlSource>::export
src/source/mysql/mod.rs:637:57: replace * with / in <impl super::Source for MysqlSource>::export
src/source/mysql/mod.rs:64:5: replace lean_pool_opts -> PoolOpts with Default::default()
src/source/mysql/mod.rs:663:23: replace == with != in <impl super::Source for MysqlSource>::export
src/source/mysql/mod.rs:671:9: replace <impl super::Source for MysqlSource>::query_scalar -> Result<Option<String>> with Ok(None)
src/source/mysql/mod.rs:671:9: replace <impl super::Source for MysqlSource>::query_scalar -> Result<Option<String>> with Ok(Some("xyzzy".into()))
src/source/mysql/mod.rs:671:9: replace <impl super::Source for MysqlSource>::query_scalar -> Result<Option<String>> with Ok(Some(String::new()))
src/source/mysql/mod.rs:677:21: delete match arm Some(mysql::Value::Bytes(b)) in <impl super::Source for MysqlSource>::query_scalar
src/source/mysql/mod.rs:680:21: delete match arm Some(mysql::Value::Int(v)) in <impl super::Source for MysqlSource>::query_scalar
src/source/mysql/mod.rs:681:21: delete match arm Some(mysql::Value::UInt(v)) in <impl super::Source for MysqlSource>::query_scalar
src/source/mysql/mod.rs:682:21: delete match arm Some(mysql::Value::Float(v)) in <impl super::Source for MysqlSource>::query_scalar
src/source/mysql/mod.rs:683:21: delete match arm Some(mysql::Value::Double(v)) in <impl super::Source for MysqlSource>::query_scalar
src/source/mysql/mod.rs:696:9: replace <impl super::Source for MysqlSource>::type_mappings -> Result<Vec<crate::types::TypeMapping>> with Ok(vec![])
src/source/mysql/mod.rs:725:9: replace <impl super::Source for MysqlSource>::sample_pressure -> Option<u64> with None
src/source/mysql/mod.rs:725:9: replace <impl super::Source for MysqlSource>::sample_pressure -> Option<u64> with Some(0)
src/source/mysql/mod.rs:725:9: replace <impl super::Source for MysqlSource>::sample_pressure -> Option<u64> with Some(1)
src/source/mysql/mod.rs:84:5: replace mysql_sample_extraction_pressure -> Option<u64> with None
src/source/mysql/mod.rs:84:5: replace mysql_sample_extraction_pressure -> Option<u64> with Some(0)
src/source/mysql/mod.rs:84:5: replace mysql_sample_extraction_pressure -> Option<u64> with Some(1)
src/source/postgres/arrow_convert.rs:101:12: replace == with != in <impl PgFromSql<'a> for PgJsonRawText<'a>>::accepts
src/source/postgres/arrow_convert.rs:101:27: replace || with && in <impl PgFromSql<'a> for PgJsonRawText<'a>>::accepts
src/source/postgres/arrow_convert.rs:101:33: replace == with != in <impl PgFromSql<'a> for PgJsonRawText<'a>>::accepts
src/source/postgres/arrow_convert.rs:101:9: replace <impl PgFromSql<'a> for PgJsonRawText<'a>>::accepts -> bool with false
src/source/postgres/arrow_convert.rs:101:9: replace <impl PgFromSql<'a> for PgJsonRawText<'a>>::accepts -> bool with true
src/source/postgres/arrow_convert.rs:108:30: replace == with != in <impl PgFromSql<'a> for PgJsonRawText<'a>>::from_sql
src/source/postgres/arrow_convert.rs:110:17: delete match arm Some((&1, rest)) in <impl PgFromSql<'a> for PgJsonRawText<'a>>::from_sql
src/source/postgres/arrow_convert.rs:121:5: replace pg_numeric_optional_utf8_string -> Result<Option<String>> with Ok(None)
src/source/postgres/arrow_convert.rs:121:5: replace pg_numeric_optional_utf8_string -> Result<Option<String>> with Ok(Some("xyzzy".into()))
src/source/postgres/arrow_convert.rs:121:5: replace pg_numeric_optional_utf8_string -> Result<Option<String>> with Ok(Some(String::new()))
src/source/postgres/arrow_convert.rs:128:5: replace numeric_raw_to_optional_decimal_text -> Option<String> with None
src/source/postgres/arrow_convert.rs:128:5: replace numeric_raw_to_optional_decimal_text -> Option<String> with Some("xyzzy".into())
src/source/postgres/arrow_convert.rs:128:5: replace numeric_raw_to_optional_decimal_text -> Option<String> with Some(String::new())
src/source/postgres/arrow_convert.rs:130:10: delete ! in numeric_raw_to_optional_decimal_text
src/source/postgres/arrow_convert.rs:151:9: delete match arm Type::BOOL in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:152:9: delete match arm Type::INT2 in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:153:9: delete match arm Type::INT4 in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:154:9: delete match arm Type::INT8 in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:157:9: delete match arm Type::OID in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:158:9: delete match arm Type::FLOAT4 in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:159:9: delete match arm Type::FLOAT8 in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:165:9: delete match arm Type::NUMERIC in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:174:9: delete match arm Type::DATE in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:175:9: delete match arm Type::TIME in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:178:9: delete match arm Type::TIMESTAMP in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:183:9: delete match arm Type::TIMESTAMPTZ in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:188:9: delete match arm Type::TEXT | Type::VARCHAR | Type::BPCHAR | Type::NAME in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:189:9: delete match arm Type::BYTEA in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:192:9: delete match arm Type::JSON | Type::JSONB in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:194:9: delete match arm Type::UUID in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:197:9: delete match arm Type::INTERVAL in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:201:13: delete match arm Kind::Enum(_) in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:203:13: delete match arm Kind::Array(elem_type) in pg_type_to_rivet
src/source/postgres/arrow_convert.rs:226:25: replace == with != in rivet_type_for_pg_column
src/source/postgres/arrow_convert.rs:265:21: delete match arm RivetType::Unsupported{reason, ..} in pg_columns_to_schema
src/source/postgres/arrow_convert.rs:276:8: delete ! in pg_columns_to_schema
src/source/postgres/arrow_convert.rs:304:22: replace != with == in <impl postgres_types::FromSql<'a> for PgInterval>::from_sql
src/source/postgres/arrow_convert.rs:317:13: replace == with != in <impl postgres_types::FromSql<'a> for PgInterval>::accepts
src/source/postgres/arrow_convert.rs:317:9: replace <impl postgres_types::FromSql<'a> for PgInterval>::accepts -> bool with false
src/source/postgres/arrow_convert.rs:317:9: replace <impl postgres_types::FromSql<'a> for PgInterval>::accepts -> bool with true
src/source/postgres/arrow_convert.rs:343:32: replace < with <= in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:343:32: replace < with == in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:361:23: replace != with == in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:361:28: replace || with && in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:361:34: replace == with != in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:361:39: replace && with || in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:361:45: replace == with != in pg_interval_to_iso8601
src/source/postgres/arrow_convert.rs:383:9: replace <impl postgres_types::FromSql<'a> for AnyAsString>::accepts -> bool with false
src/source/postgres/arrow_convert.rs:410:28: replace != with == in rows_to_record_batch_typed
src/source/postgres/arrow_convert.rs:447:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::num_rows -> usize with 0
src/source/postgres/arrow_convert.rs:447:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::num_rows -> usize with 1
src/source/postgres/arrow_convert.rs:450:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int16 -> Option<i16> with None
src/source/postgres/arrow_convert.rs:450:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int16 -> Option<i16> with Some(-1)
src/source/postgres/arrow_convert.rs:450:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int16 -> Option<i16> with Some(0)
src/source/postgres/arrow_convert.rs:450:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int16 -> Option<i16> with Some(1)
src/source/postgres/arrow_convert.rs:453:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int32 -> Option<i32> with None
src/source/postgres/arrow_convert.rs:453:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int32 -> Option<i32> with Some(-1)
src/source/postgres/arrow_convert.rs:453:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int32 -> Option<i32> with Some(0)
src/source/postgres/arrow_convert.rs:453:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int32 -> Option<i32> with Some(1)
src/source/postgres/arrow_convert.rs:456:32: replace == with != in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int64
src/source/postgres/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int64 -> Option<i64> with None
src/source/postgres/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int64 -> Option<i64> with Some(-1)
src/source/postgres/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int64 -> Option<i64> with Some(0)
src/source/postgres/arrow_convert.rs:456:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::int64 -> Option<i64> with Some(1)
src/source/postgres/arrow_convert.rs:465:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::uint64 -> Option<u64> with Some(0)
src/source/postgres/arrow_convert.rs:465:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::uint64 -> Option<u64> with Some(1)
src/source/postgres/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float32 -> Option<f32> with None
src/source/postgres/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float32 -> Option<f32> with Some(-1.0)
src/source/postgres/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float32 -> Option<f32> with Some(0.0)
src/source/postgres/arrow_convert.rs:468:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float32 -> Option<f32> with Some(1.0)
src/source/postgres/arrow_convert.rs:471:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float64 -> Option<f64> with None
src/source/postgres/arrow_convert.rs:471:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float64 -> Option<f64> with Some(-1.0)
src/source/postgres/arrow_convert.rs:471:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float64 -> Option<f64> with Some(0.0)
src/source/postgres/arrow_convert.rs:471:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::float64 -> Option<f64> with Some(1.0)
src/source/postgres/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal128 -> Option<i128> with None
src/source/postgres/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal128 -> Option<i128> with Some(-1)
src/source/postgres/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal128 -> Option<i128> with Some(0)
src/source/postgres/arrow_convert.rs:474:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal128 -> Option<i128> with Some(1)
src/source/postgres/arrow_convert.rs:483:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::date32 -> Option<i32> with None
src/source/postgres/arrow_convert.rs:483:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::date32 -> Option<i32> with Some(-1)
src/source/postgres/arrow_convert.rs:483:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::date32 -> Option<i32> with Some(0)
src/source/postgres/arrow_convert.rs:483:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::date32 -> Option<i32> with Some(1)
src/source/postgres/arrow_convert.rs:488:32: replace == with != in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::ts_micros
src/source/postgres/arrow_convert.rs:488:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::ts_micros -> Option<i64> with None
src/source/postgres/arrow_convert.rs:488:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::ts_micros -> Option<i64> with Some(-1)
src/source/postgres/arrow_convert.rs:488:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::ts_micros -> Option<i64> with Some(0)
src/source/postgres/arrow_convert.rs:488:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::ts_micros -> Option<i64> with Some(1)
src/source/postgres/arrow_convert.rs:499:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::boolean -> Option<bool> with None
src/source/postgres/arrow_convert.rs:499:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::boolean -> Option<bool> with Some(false)
src/source/postgres/arrow_convert.rs:499:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::boolean -> Option<bool> with Some(true)
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with None
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/postgres/arrow_convert.rs:502:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with None
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/postgres/arrow_convert.rs:507:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8 -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/postgres/arrow_convert.rs:509:13: delete match arm Type::TEXT | Type::VARCHAR | Type::BPCHAR | Type::NAME in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:512:13: delete match arm Type::JSON | Type::JSONB in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:513:17: delete match arm Ok(Some(PgJsonRawText(t))) in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:516:13: delete match arm Type::NUMERIC in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:517:17: delete match arm Ok(Some(t)) in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:520:13: delete match arm Type::UUID in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:521:17: delete match arm Ok(Some(PgUuidBytes(b))) in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:526:13: delete match arm Type::INTERVAL in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:535:22: replace match guard matches!(t.kind(), Kind::Enum(_)) with false in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:535:22: replace match guard matches!(t.kind(), Kind::Enum(_)) with true in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::utf8
src/source/postgres/arrow_convert.rs:544:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros -> Option<i64> with None
src/source/postgres/arrow_convert.rs:544:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros -> Option<i64> with Some(-1)
src/source/postgres/arrow_convert.rs:544:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros -> Option<i64> with Some(0)
src/source/postgres/arrow_convert.rs:544:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros -> Option<i64> with Some(1)
src/source/postgres/arrow_convert.rs:549:54: replace * with + in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros
src/source/postgres/arrow_convert.rs:549:54: replace * with / in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros
src/source/postgres/arrow_convert.rs:549:66: replace + with * in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros
src/source/postgres/arrow_convert.rs:549:66: replace + with - in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros
src/source/postgres/arrow_convert.rs:549:90: replace / with % in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros
src/source/postgres/arrow_convert.rs:549:90: replace / with * in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::time64_micros
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with None
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(Vec::new())))
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![0])))
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Borrowed(Vec::leak(vec![1])))
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(Vec::new()).to_owned()))
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![0]).to_owned()))
src/source/postgres/arrow_convert.rs:553:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary -> Option<Cow<'_, [u8]>> with Some(Cow::Owned(Vec::leak(vec![1]).to_owned()))
src/source/postgres/arrow_convert.rs:554:13: delete match arm Ok(Some(PgUuidBytes(b))) in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::fixed_binary
src/source/postgres/arrow_convert.rs:559:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal256 -> Option<arrow::datatypes::i256> with None
src/source/postgres/arrow_convert.rs:559:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal256 -> Option<arrow::datatypes::i256> with Some(Default::default())
src/source/postgres/arrow_convert.rs:561:13: delete match arm Ok(Some(t)) in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::decimal256
src/source/postgres/arrow_convert.rs:571:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list -> Option<Vec<crate::source::value_checksum::ListElem>> with None
src/source/postgres/arrow_convert.rs:571:9: replace <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list -> Option<Vec<crate::source::value_checksum::ListElem>> with Some(vec![])
src/source/postgres/arrow_convert.rs:588:13: delete match arm DataType::Boolean in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:589:13: delete match arm DataType::Int16 in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:590:13: delete match arm DataType::Int32 in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:591:13: delete match arm DataType::Int64 in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:592:13: delete match arm DataType::Float32 in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:593:13: delete match arm DataType::Float64 in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:594:13: delete match arm DataType::Utf8 in <impl crate::source::value_checksum::CellSource for PgCellSource<'_>>::list
src/source/postgres/arrow_convert.rs:639:25: replace == with != in build_array
src/source/postgres/arrow_convert.rs:66:12: replace == with != in <impl PgFromSql<'a> for PgUuidBytes>::accepts
src/source/postgres/arrow_convert.rs:66:9: replace <impl PgFromSql<'a> for PgUuidBytes>::accepts -> bool with false
src/source/postgres/arrow_convert.rs:66:9: replace <impl PgFromSql<'a> for PgUuidBytes>::accepts -> bool with true
src/source/postgres/arrow_convert.rs:702:75: replace * with + in build_array
src/source/postgres/arrow_convert.rs:702:75: replace * with / in build_array
src/source/postgres/arrow_convert.rs:703:29: replace + with * in build_array
src/source/postgres/arrow_convert.rs:703:29: replace + with - in build_array
src/source/postgres/arrow_convert.rs:703:53: replace / with % in build_array
src/source/postgres/arrow_convert.rs:703:53: replace / with * in build_array
src/source/postgres/arrow_convert.rs:716:25: replace == with != in build_array
src/source/postgres/arrow_convert.rs:73:22: replace == with != in <impl PgFromSql<'a> for PgUuidBytes>::from_sql
src/source/postgres/arrow_convert.rs:777:9: delete match arm Type::TEXT | Type::VARCHAR | Type::BPCHAR | Type::NAME in build_pg_text_array
src/source/postgres/arrow_convert.rs:799:9: delete match arm Type::JSON | Type::JSONB in build_pg_text_array
src/source/postgres/arrow_convert.rs:811:9: delete match arm Type::NUMERIC in build_pg_text_array
src/source/postgres/arrow_convert.rs:818:9: delete match arm Type::UUID in build_pg_text_array
src/source/postgres/arrow_convert.rs:829:9: delete match arm Type::INTERVAL in build_pg_text_array
src/source/postgres/arrow_convert.rs:840:14: replace match guard matches!(pg_type.kind(), Kind::Enum(_)) with false in build_pg_text_array
src/source/postgres/arrow_convert.rs:840:14: replace match guard matches!(pg_type.kind(), Kind::Enum(_)) with true in build_pg_text_array
src/source/postgres/arrow_convert.rs:964:5: replace pg_numeric_optional_plain -> Result<Option<String>> with Ok(None)
src/source/postgres/arrow_convert.rs:964:5: replace pg_numeric_optional_plain -> Result<Option<String>> with Ok(Some("xyzzy".into()))
src/source/postgres/arrow_convert.rs:964:5: replace pg_numeric_optional_plain -> Result<Option<String>> with Ok(Some(String::new()))
src/source/postgres/arrow_convert.rs:968:21: delete ! in pg_numeric_optional_plain
src/source/postgres/arrow_convert.rs:979:28: delete ! in pg_numeric_optional_plain
src/source/postgres/arrow_convert.rs:987:5: replace pg_numeric_optional_scaled_i128 -> Result<Option<i128>> with Ok(None)
src/source/postgres/arrow_convert.rs:987:5: replace pg_numeric_optional_scaled_i128 -> Result<Option<i128>> with Ok(Some(-1))
src/source/postgres/arrow_convert.rs:987:5: replace pg_numeric_optional_scaled_i128 -> Result<Option<i128>> with Ok(Some(0))
src/source/postgres/arrow_convert.rs:987:5: replace pg_numeric_optional_scaled_i128 -> Result<Option<i128>> with Ok(Some(1))
src/source/postgres/cdc.rs:135:9: replace PgChangeStream::fill -> Result<()> with Ok(())
src/source/postgres/cdc.rs:152:31: replace > with < in PgChangeStream::fill
src/source/postgres/cdc.rs:152:31: replace > with == in PgChangeStream::fill
src/source/postgres/cdc.rs:152:31: replace > with >= in PgChangeStream::fill
src/source/postgres/cdc.rs:171:12: delete ! in PgChangeStream::fill
src/source/postgres/cdc.rs:171:25: replace || with && in PgChangeStream::fill
src/source/postgres/cdc.rs:171:35: replace < with <= in PgChangeStream::fill
src/source/postgres/cdc.rs:171:35: replace < with == in PgChangeStream::fill
src/source/postgres/cdc.rs:171:35: replace < with > in PgChangeStream::fill
src/source/postgres/cdc.rs:182:5: replace parse_lsn -> Option<u64> with None
src/source/postgres/cdc.rs:182:5: replace parse_lsn -> Option<u64> with Some(0)
src/source/postgres/cdc.rs:182:5: replace parse_lsn -> Option<u64> with Some(1)
src/source/postgres/cdc.rs:185:25: replace << with >> in parse_lsn
src/source/postgres/cdc.rs:185:32: replace | with & in parse_lsn
src/source/postgres/cdc.rs:185:32: replace | with ^ in parse_lsn
src/source/postgres/cdc.rs:193:39: replace && with || in <impl ChangeStream for PgChangeStream>::next_change
src/source/postgres/cdc.rs:193:42: delete ! in <impl ChangeStream for PgChangeStream>::next_change
src/source/postgres/cdc.rs:193:9: replace <impl ChangeStream for PgChangeStream>::next_change -> Option<Result<ChangeEvent>> with None
src/source/postgres/cdc.rs:205:9: replace <impl ChangeStream for PgChangeStream>::ack -> Result<()> with Ok(())
src/source/postgres/cdc.rs:214:27: replace || with && in <impl ChangeStream for PgChangeStream>::ack
src/source/postgres/cdc.rs:214:30: delete ! in <impl ChangeStream for PgChangeStream>::ack
src/source/postgres/cdc.rs:214:73: replace || with && in <impl ChangeStream for PgChangeStream>::ack
src/source/postgres/cdc.rs:214:78: replace == with != in <impl ChangeStream for PgChangeStream>::ack
src/source/postgres/cdc.rs:324:13: replace < with <= in parse_value
src/source/postgres/cdc.rs:330:36: replace + with * in parse_value
src/source/postgres/cdc.rs:330:36: replace + with - in parse_value
src/source/postgres/cdc.rs:343:16: replace < with <= in utf8_len
src/source/postgres/cdc.rs:354:8: delete ! in map_pg_value
src/source/postgres/cdc.rs:367:40: replace || with && in map_pg_value
src/source/postgres/cdc.rs:367:59: replace || with && in map_pg_value
src/source/postgres/cdc.rs:370:33: replace || with && in map_pg_value
src/source/postgres/cdc.rs:374:51: replace == with != in map_pg_value
src/source/postgres/cdc.rs:376:32: replace || with && in map_pg_value
src/source/postgres/cdc.rs:449:21: replace < with <= in parse_pg_array_literal
src/source/postgres/cdc.rs:450:39: replace + with * in parse_pg_array_literal
src/source/postgres/cdc.rs:450:39: replace + with - in parse_pg_array_literal
src/source/postgres/cdc.rs:450:43: replace < with <= in parse_pg_array_literal
src/source/postgres/cdc.rs:493:31: replace || with && in parse_pg_time_micros
src/source/postgres/cdc.rs:502:30: replace + with - in parse_pg_time_micros
src/source/postgres/cdc.rs:515:29: delete - in parse_pg_interval
src/source/postgres/cdc.rs:526:18: replace match guard u.starts_with("day") with true in parse_pg_interval
src/source/postgres/cdc.rs:71:26: replace match guard cfg.mode.is_enforced() with false in PgChangeStream::open
src/source/postgres/cdc.rs:71:26: replace match guard cfg.mode.is_enforced() with true in PgChangeStream::open
src/source/postgres/cdc.rs:94:12: delete ! in PgChangeStream::open
src/source/postgres/mod.rs:143:9: replace PgTxnGuard<'a>::commit -> Result<()> with Ok(())
src/source/postgres/mod.rs:151:12: delete ! in <impl Drop for PgTxnGuard<'_>>::drop
src/source/postgres/mod.rs:151:9: replace <impl Drop for PgTxnGuard<'_>>::drop with ()
src/source/postgres/mod.rs:173:5: replace sample_temp_bytes -> Option<i64> with None
src/source/postgres/mod.rs:173:5: replace sample_temp_bytes -> Option<i64> with Some(-1)
src/source/postgres/mod.rs:173:5: replace sample_temp_bytes -> Option<i64> with Some(0)
src/source/postgres/mod.rs:173:5: replace sample_temp_bytes -> Option<i64> with Some(1)
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with None
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), -1)])
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 0)])
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![("xyzzy".into(), 1)])
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), -1)])
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 0)])
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![(String::new(), 1)])
src/source/postgres/mod.rs:199:5: replace sample_harm_counters -> Option<Vec<(String, i64)>> with Some(vec![])
src/source/postgres/mod.rs:240:5: replace pg_fetch_work_mem_bytes -> Option<i64> with None
src/source/postgres/mod.rs:240:5: replace pg_fetch_work_mem_bytes -> Option<i64> with Some(-1)
src/source/postgres/mod.rs:240:5: replace pg_fetch_work_mem_bytes -> Option<i64> with Some(0)
src/source/postgres/mod.rs:240:5: replace pg_fetch_work_mem_bytes -> Option<i64> with Some(1)
src/source/postgres/mod.rs:286:5: replace pg_sample_checkpoints_req -> Option<i64> with None
src/source/postgres/mod.rs:286:5: replace pg_sample_checkpoints_req -> Option<i64> with Some(-1)
src/source/postgres/mod.rs:286:5: replace pg_sample_checkpoints_req -> Option<i64> with Some(0)
src/source/postgres/mod.rs:286:5: replace pg_sample_checkpoints_req -> Option<i64> with Some(1)
src/source/postgres/mod.rs:309:5: replace introspect_pg_table_for_chunking -> Result<crate::source::TableIntrospection> with Ok(Default::default())
src/source/postgres/mod.rs:329:41: replace > with < in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:329:41: replace > with == in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:329:41: replace > with >= in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:330:29: replace / with % in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:330:29: replace / with * in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:345:42: replace == with != in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:381:27: replace == with != in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:381:38: replace && with || in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:381:41: delete ! in introspect_pg_table_for_chunking
src/source/postgres/mod.rs:408:22: replace match guard cfg.mode.is_enforced() with false in connect_client
src/source/postgres/mod.rs:408:22: replace match guard cfg.mode.is_enforced() with true in connect_client
src/source/postgres/mod.rs:436:5: replace pg_run_export -> Result<(usize, bool)> with Ok((0, false))
src/source/postgres/mod.rs:436:5: replace pg_run_export -> Result<(usize, bool)> with Ok((0, true))
src/source/postgres/mod.rs:436:5: replace pg_run_export -> Result<(usize, bool)> with Ok((1, false))
src/source/postgres/mod.rs:436:5: replace pg_run_export -> Result<(usize, bool)> with Ok((1, true))
src/source/postgres/mod.rs:437:35: replace > with < in pg_run_export
src/source/postgres/mod.rs:437:35: replace > with == in pg_run_export
src/source/postgres/mod.rs:437:35: replace > with >= in pg_run_export
src/source/postgres/mod.rs:443:30: replace > with < in pg_run_export
src/source/postgres/mod.rs:443:30: replace > with == in pg_run_export
src/source/postgres/mod.rs:443:30: replace > with >= in pg_run_export
src/source/postgres/mod.rs:515:20: replace += with *= in pg_run_export
src/source/postgres/mod.rs:515:20: replace += with -= in pg_run_export
src/source/postgres/mod.rs:528:12: delete ! in pg_run_export
src/source/postgres/mod.rs:530:26: replace > with < in pg_run_export
src/source/postgres/mod.rs:530:26: replace > with == in pg_run_export
src/source/postgres/mod.rs:530:26: replace > with >= in pg_run_export
src/source/postgres/mod.rs:533:46: replace / with % in pg_run_export
src/source/postgres/mod.rs:533:46: replace / with * in pg_run_export
src/source/postgres/mod.rs:534:46: replace * with + in pg_run_export
src/source/postgres/mod.rs:534:46: replace * with / in pg_run_export
src/source/postgres/mod.rs:534:52: replace / with % in pg_run_export
src/source/postgres/mod.rs:534:52: replace / with * in pg_run_export
src/source/postgres/mod.rs:535:38: replace * with + in pg_run_export
src/source/postgres/mod.rs:535:38: replace * with / in pg_run_export
src/source/postgres/mod.rs:535:54: replace / with % in pg_run_export
src/source/postgres/mod.rs:535:54: replace / with * in pg_run_export
src/source/postgres/mod.rs:538:44: replace * with + in pg_run_export
src/source/postgres/mod.rs:538:44: replace * with / in pg_run_export
src/source/postgres/mod.rs:538:51: replace * with + in pg_run_export
src/source/postgres/mod.rs:538:51: replace * with / in pg_run_export
src/source/postgres/mod.rs:538:59: replace / with % in pg_run_export
src/source/postgres/mod.rs:538:59: replace / with * in pg_run_export
src/source/postgres/mod.rs:572:22: replace < with <= in pg_run_export
src/source/postgres/mod.rs:572:22: replace < with == in pg_run_export
src/source/postgres/mod.rs:572:22: replace < with > in pg_run_export
src/source/postgres/mod.rs:591:9: replace <impl super::Source for PostgresSource>::export -> Result<()> with Ok(())
src/source/postgres/mod.rs:59:5: replace detect_pg_transaction_pooler -> bool with false
src/source/postgres/mod.rs:59:5: replace detect_pg_transaction_pooler -> bool with true
src/source/postgres/mod.rs:623:12: delete ! in <impl super::Source for PostgresSource>::export
src/source/postgres/mod.rs:632:9: replace <impl super::Source for PostgresSource>::query_scalar -> Result<Option<String>> with Ok(None)
src/source/postgres/mod.rs:632:9: replace <impl super::Source for PostgresSource>::query_scalar -> Result<Option<String>> with Ok(Some("xyzzy".into()))
src/source/postgres/mod.rs:632:9: replace <impl super::Source for PostgresSource>::query_scalar -> Result<Option<String>> with Ok(Some(String::new()))
src/source/postgres/mod.rs:667:9: replace <impl super::Source for PostgresSource>::type_mappings -> Result<Vec<TypeMapping>> with Ok(vec![])
src/source/postgres/mod.rs:686:9: replace <impl super::Source for PostgresSource>::sample_pressure -> Option<u64> with None
src/source/postgres/mod.rs:686:9: replace <impl super::Source for PostgresSource>::sample_pressure -> Option<u64> with Some(0)
src/source/postgres/mod.rs:686:9: replace <impl super::Source for PostgresSource>::sample_pressure -> Option<u64> with Some(1)
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with None
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (0, -1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (0, 0))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (0, 1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (1, -1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (1, 0))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([("xyzzy".into(), (1, 1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (0, -1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (0, 0))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (0, 1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (1, -1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (1, 0))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::from_iter([(String::new(), (1, 1))]))
src/source/postgres/mod.rs:699:5: replace pg_numeric_catalog_hints_opt -> Option<HashMap<String, (u8, i8)>> with Some(HashMap::new())
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(None)
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (0, -1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (0, 0))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (0, 1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (1, -1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (1, 0))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), (1, 1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (0, -1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (0, 0))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (0, 1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (1, -1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (1, 0))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::from_iter([(String::new(), (1, 1))])))
src/source/postgres/mod.rs:719:5: replace pg_fetch_numeric_catalog_hints -> crate::error::Result<Option<HashMap<String, (u8, i8)>>> with Ok(Some(HashMap::new()))
src/source/postgres/mod.rs:750:12: delete ! in pg_fetch_numeric_catalog_hints
src/source/postgres/mod.rs:774:5: replace is_pg_numeric_information_type -> bool with false
src/source/postgres/mod.rs:774:5: replace is_pg_numeric_information_type -> bool with true
src/source/postgres/mod.rs:776:9: replace || with && in is_pg_numeric_information_type
src/source/postgres/mod.rs:777:9: replace || with && in is_pg_numeric_information_type
src/source/postgres/mod.rs:95:26: replace match guard cfg.mode.is_enforced() with false in PostgresSource::connect_with_tls
src/source/postgres/mod.rs:95:26: replace match guard cfg.mode.is_enforced() with true in PostgresSource::connect_with_tls
src/types/target.rs:141:9: replace TargetStatus::label -> &'static str with ""
src/types/target.rs:141:9: replace TargetStatus::label -> &'static str with "xyzzy"
src/types/target.rs:266:5: replace unsupported_reason -> String with "xyzzy".into()
src/types/target.rs:266:5: replace unsupported_reason -> String with String::new()
src/types/target.rs:267:9: delete match arm RivetType::Unsupported{reason, ..} in unsupported_reason
src/types/target.rs:488:27: replace < with <= in duckdb::native
src/types/target.rs:573:27: replace < with <= in snowflake::native
src/types/target.rs:720:27: replace < with <= in clickhouse::native
src/types/target.rs:77:9: replace ExportTarget::label -> &'static str with ""
src/types/target.rs:77:9: replace ExportTarget::label -> &'static str with "xyzzy"
src/types/target.rs:96:70: replace == with != in ExportTarget::resolve_column