spg-engine 7.37.23

Execution engine for SPG: glues spg-sql parsing to spg-storage. Foreign keys, joins, vectors, cold tier.
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
//! v7.20 test-speed A (part 2) — the 161 standalone spg-engine
//! integration-test binaries merged into ONE target: one link
//! instead of 161 (each link cost ~10 s — the dominant share of
//! the serial workspace gate), and libtest parallelises all
//! modules in-process. Pure in-memory engine tests: no servers,
//! no file locks, no env mutation — fully concurrency-safe.
//! perf_* targets stay standalone (timing-sensitive).

mod e2e;
mod e2e_abs_neg_types_round107;
mod e2e_acc_converge_round665;
mod e2e_acl_functions;
mod e2e_acl_round57;
mod e2e_age_single_arg;
mod e2e_age_wallclock_round97;
mod e2e_age_xid;
mod e2e_agg_normalize_round231;
mod e2e_agg_subquery_pullup;
mod e2e_aggregate_pg_differential;
mod e2e_aggregate_signatures_round626;
mod e2e_alter_add_column;
mod e2e_alter_collate_round713;
mod e2e_alter_column_default_notnull;
mod e2e_alter_column_pg_dump_compat;
mod e2e_alter_column_type;
mod e2e_alter_domain_round260;
mod e2e_alter_drop_constraint_kinds;
mod e2e_alter_drop_identity;
mod e2e_alter_role_password_round750;
mod e2e_alter_subcommands_round49;
mod e2e_alter_table_pg_dump_compat;
mod e2e_alter_table_pg_only_residuals;
mod e2e_alter_trigger_variants;
mod e2e_alter_wider_pg_dump_compat;
mod e2e_ansi89_join_round588;
mod e2e_any_all_array_round597;
mod e2e_any_all_unknown_array;
mod e2e_any_all_with_merge_star_round153;
mod e2e_any_value;
mod e2e_armor;
mod e2e_array2d_concat_round108;
mod e2e_array_2d;
mod e2e_array_agg_argmax;
mod e2e_array_agg_typing_round73;
mod e2e_array_agg_tz_identity_round327;
mod e2e_array_append_cat_trim;
mod e2e_array_bytea_bit_input_round325;
mod e2e_array_concat_null;
mod e2e_array_ctor_types_round236;
mod e2e_array_dims;
mod e2e_array_family;
mod e2e_array_family_round72;
mod e2e_array_insert_select_round621;
mod e2e_array_literal_2d_round92;
mod e2e_array_numeric_unification;
mod e2e_array_ops;
mod e2e_array_ops_round70;
mod e2e_array_orderby;
mod e2e_array_pg17_funcs;
mod e2e_array_position_element_types;
mod e2e_array_positions;
mod e2e_array_remove_replace;
mod e2e_array_round257;
mod e2e_array_shuffle_sample;
mod e2e_array_subquery_round105;
mod e2e_array_to_json;
mod e2e_array_to_string;
mod e2e_as_of_segment;
mod e2e_attcollation_round675;
mod e2e_attgenerated;
mod e2e_audit_n6_remainder;
mod e2e_autoanalyze_pass;
mod e2e_autovacuum_tick_round173;
mod e2e_avg_money_round664;
mod e2e_backend_control_probes;
mod e2e_bare_context_sweep_round525;
mod e2e_bare_values;
mod e2e_bc_dates;
mod e2e_begin_isolation_round118;
mod e2e_bigint_unsigned_round471;
mod e2e_binary_prefix_round355;
mod e2e_bit_agg_integer;
mod e2e_bit_count;
mod e2e_bit_count_bitstring;
mod e2e_bit_length;
mod e2e_bit_length_round281;
mod e2e_bit_string_literals;
mod e2e_bool_2d_round75;
mod e2e_bool_agg;
mod e2e_bool_string_compare;
mod e2e_bool_test_shape_round328;
mod e2e_bound_column_projection_round487;
mod e2e_bpchar;
mod e2e_brin;
mod e2e_by_is_an_identifier_round621;
mod e2e_bytea;
mod e2e_bytea_bitops;
mod e2e_bytea_ops;
mod e2e_bytea_round261;
mod e2e_bytea_round36;
mod e2e_c09_round662;
mod e2e_cardinality_violation;
mod e2e_case_coalesce_types_round237;
mod e2e_casefold;
mod e2e_cash_words;
mod e2e_cash_words_money;
mod e2e_cast_array_any_round604;
mod e2e_cast_gaps_round544;
mod e2e_cast_gaps_round633;
mod e2e_cast_matrix_round634;
mod e2e_cast_plain_round722;
mod e2e_cast_target_names_round515;
mod e2e_cast_targets;
mod e2e_cast_targets_batch2;
mod e2e_catalog_column_types_round620;
mod e2e_catalog_completeness_round474;
mod e2e_catalog_ctx_round54;
mod e2e_catalog_functions_round516;
mod e2e_catalog_functions_round517;
mod e2e_catalog_name_type_round313;
mod e2e_catalog_self_describing_round623;
mod e2e_catalog_system_columns_round540;
mod e2e_catalog_types_round514;
mod e2e_ceil;
mod e2e_char_bool_round41;
mod e2e_chr_ascii_initcap;
mod e2e_churn_seek_cap_round461;
mod e2e_clock_family;
mod e2e_clock_precision_round349;
mod e2e_coalesce_shortcircuit_round609;
mod e2e_coercion_errors_round90;
mod e2e_coercion_strictness_round625;
mod e2e_cold_rows_per_table;
mod e2e_cold_tier_scan_gate_round943;
mod e2e_collate;
mod e2e_collate_derive_round692;
mod e2e_collate_explicit_round691;
mod e2e_collate_minmax_round690;
mod e2e_collate_order_group;
mod e2e_collate_order_round688;
mod e2e_collate_range_round693;
mod e2e_collation_round670;
mod e2e_column_accepts_round643;
mod e2e_column_acl_round59;
mod e2e_column_labels_round505;
mod e2e_comment_on_round50;
mod e2e_common_type_unification;
mod e2e_compaction;
mod e2e_compiled_expr;
mod e2e_composite_identity_round307;
mod e2e_composite_round263;
mod e2e_composite_round56;
mod e2e_composite_row_to_json;
mod e2e_composite_type;
mod e2e_computed_col_view_dml_round154;
mod e2e_computed_join_key_round590;
mod e2e_computed_only_join_round606;
mod e2e_concat;
mod e2e_concat_borrow_round612;
mod e2e_concat_ws;
mod e2e_conditional_instead_rule_round333;
mod e2e_connective_shortcircuit_round621;
mod e2e_const_fold_round605;
mod e2e_constant_answers_round518;
mod e2e_constant_answers_round520;
mod e2e_constraintdef_pretty_round311;
mod e2e_constraintdef_round290;
mod e2e_convert_from_to;
mod e2e_copy_from_csv;
mod e2e_copy_from_file_round249;
mod e2e_copy_options_round247;
mod e2e_copy_options_round265;
mod e2e_copy_query_embedded_round94;
mod e2e_copy_to_file_round252;
mod e2e_copy_to_stdout;
mod e2e_corr_limit1_pullup;
mod e2e_corr_youngs_cramer_round115;
mod e2e_correlated_bare_name_round545;
mod e2e_correlated_derived_round530;
mod e2e_correlated_exists_round596;
mod e2e_correlated_subquery_batch;
mod e2e_correlation_into_from_round532;
mod e2e_cot_log2;
mod e2e_count_short_circuit;
mod e2e_count_star_round559;
mod e2e_crc32;
mod e2e_create_extension;
mod e2e_create_index_autoname_round93;
mod e2e_create_index_concurrently;
mod e2e_create_statistics_round280;
mod e2e_create_table_like_round531;
mod e2e_create_wider_pg_dump_compat;
mod e2e_crypt;
mod e2e_ctas;
mod e2e_cte_cycle;
mod e2e_cte_no_returning_ref_round150;
mod e2e_cte_search;
mod e2e_cte_shadows_table_round156;
mod e2e_cte_shadows_table_write_round157;
mod e2e_cte_shadows_view_round158;
mod e2e_cte_values_materialized;
mod e2e_ctid_round511;
mod e2e_current_catalog_role;
mod e2e_current_setting;
mod e2e_current_setting_missing;
mod e2e_cursor_round218;
mod e2e_date_add_subtract;
mod e2e_date_bin;
mod e2e_date_compiled_round595;
mod e2e_date_format_round357;
mod e2e_date_parse_relaxed;
mod e2e_date_part_double;
mod e2e_date_part_matrix_round276;
mod e2e_date_trunc_date_tstz_round114;
mod e2e_datetime_input_forms;
mod e2e_datetime_pg_differential;
mod e2e_datetime_templates_round246;
mod e2e_db_role_setting_round547;
mod e2e_ddl_errors_round45;
mod e2e_ddl_errors_round47;
mod e2e_ddl_errors_round89;
mod e2e_ddl_object_errors_round700;
mod e2e_decimal_spelling_round345;
mod e2e_default_in_values;
mod e2e_deferrable;
mod e2e_deferrable_fk_round288;
mod e2e_deferrable_trailer_round621;
mod e2e_delimiter;
mod e2e_derived_join_round572;
mod e2e_derived_table;
mod e2e_describe_matches_execute_round462;
mod e2e_difference;
mod e2e_distinct_buffer_round485;
mod e2e_distinct_derived;
mod e2e_distinct_from_date_diff;
mod e2e_distinct_on;
mod e2e_div_erf;
mod e2e_dml_object_errors_round701;
mod e2e_dml_seq_scan_stats_round455;
mod e2e_dml_target_not_cte_round149;
mod e2e_do_block;
mod e2e_domain_cast;
mod e2e_domain_round259;
mod e2e_domain_type;
mod e2e_drop_expression_if_exists_round187;
mod e2e_drop_wider_pg_dump_compat;
mod e2e_empty_target_list_round341;
mod e2e_encoding_matrix;
mod e2e_enum_and_reg_to_text;
mod e2e_enum_cast;
mod e2e_enum_identity_round258;
mod e2e_enum_introspection;
mod e2e_enum_order;
mod e2e_enum_type;
mod e2e_error_surface_round622;
mod e2e_estring_bytes_round773;
mod e2e_exclude_batch_fastpath_round214;
mod e2e_exclude_catalog_round211;
mod e2e_exclude_constraint_round210;
mod e2e_exclude_index_mvcc_round215;
mod e2e_exclude_multicol_round212;
mod e2e_exclude_update_index_round216;
mod e2e_executor_3vl_verify_round188;
mod e2e_exists_noclone_round616;
mod e2e_exists_reverse_pullup_round752;
mod e2e_expectation_audit_round521;
mod e2e_explain_analyze_dml_round286;
mod e2e_explain_analyze_pg_round227;
mod e2e_explain_costs_dml_round225;
mod e2e_explain_index_only_round565;
mod e2e_explain_names_the_index_round551;
mod e2e_explain_pg_shape_round224;
mod e2e_explain_split_json_round226;
mod e2e_explain_xml_yaml_round228;
mod e2e_expr_errors_round704;
mod e2e_extension_probes;
mod e2e_extract_epoch_date_round104;
mod e2e_extract_fields_round253;
mod e2e_extract_from_time;
mod e2e_extract_subsecond;
mod e2e_factorial_width_bucket;
mod e2e_fast_predicate_round482;
mod e2e_fk_match_full;
mod e2e_float8_range;
mod e2e_float8_shortest_round292;
mod e2e_float_range_round270;
mod e2e_float_round_half_even;
mod e2e_float_to_int_range;
mod e2e_format_minmax_round611;
mod e2e_format_type;
mod e2e_from_values;
mod e2e_fromless_aggregate_round106;
mod e2e_fts_catalogs_round650;
mod e2e_fts_default_config_round44;
mod e2e_fts_introspection;
mod e2e_fts_prefix_stem_round245;
mod e2e_fts_tokenizer_round43;
mod e2e_func_arg_coerce;
mod e2e_function_and_slru_stats;
mod e2e_function_attrs_round322;
mod e2e_function_signature_key_round315;
mod e2e_function_signatures_round510;
mod e2e_function_style_typecast;
mod e2e_functiondef_ruledef_round312;
mod e2e_fused_expr_round716;
mod e2e_fused_extremes_round569;
mod e2e_generate_series_string_step;
mod e2e_generate_subscripts;
mod e2e_geo_float_round39;
mod e2e_geo_ops_batch;
mod e2e_geo_ops_batch2;
mod e2e_geometric_constructors;
mod e2e_geometric_tail;
mod e2e_get_format;
mod e2e_group_by_alias_round528;
mod e2e_group_by_strict_round620;
mod e2e_group_concat;
mod e2e_group_concat_round354;
mod e2e_grouping_elements_round242;
mod e2e_grouping_in_order_by_round135;
mod e2e_grouping_sets_round124;
mod e2e_guc_canonicalize_round204;
mod e2e_guc_read_path_round534;
mod e2e_hash_funcs;
mod e2e_hstore_wire_round780;
mod e2e_identity_domain_round220;
mod e2e_if_exists_notice_round282;
mod e2e_in_set_fast_path_round486;
mod e2e_index_am_round53;
mod e2e_index_attrs_survive_rebuild_round170;
mod e2e_index_maintenance_probes;
mod e2e_index_only_equality_round566;
mod e2e_index_only_runs_round562;
mod e2e_index_only_scan_round560;
mod e2e_index_order_round537;
mod e2e_index_prune_round493;
mod e2e_index_round52;
mod e2e_indexdef_round83;
mod e2e_inet_bitwise;
mod e2e_inet_cidr_round262;
mod e2e_inet_family;
mod e2e_inet_masking_round103;
mod e2e_inet_merge;
mod e2e_infinity_datetime;
mod e2e_info_constraints_round266;
mod e2e_info_schema_ccu;
mod e2e_info_schema_check_constraints;
mod e2e_info_schema_columns_widened;
mod e2e_info_schema_domains_round330;
mod e2e_info_schema_sequences;
mod e2e_info_schema_triggers;
mod e2e_infoschema_column_type_round362;
mod e2e_infoschema_columns_round248;
mod e2e_infoschema_dialect_round361;
mod e2e_infoschema_generated_round208;
mod e2e_infoschema_matview_round536;
mod e2e_infoschema_not_null;
mod e2e_inherit_alter_truncate_round647;
mod e2e_inheritance_catalog_round642;
mod e2e_inheritance_dml_round646;
mod e2e_input_syntax_wording_round324;
mod e2e_insert_default_values;
mod e2e_insert_errors_round88;
mod e2e_insert_fewer_values;
mod e2e_insert_named_cast_round55;
mod e2e_insert_then_update_round85;
mod e2e_instead_of_insert_round137;
mod e2e_instead_of_returning_round137c;
mod e2e_instead_of_update_delete_round137b;
mod e2e_int2_arithmetic_type;
mod e2e_int_arith_round614;
mod e2e_int_to_bit;
mod e2e_intersect_except;
mod e2e_interval_array_round40;
mod e2e_interval_component_arith;
mod e2e_interval_expr_round350;
mod e2e_interval_justify;
mod e2e_interval_literal_arg_round621;
mod e2e_interval_qualifier_round102;
mod e2e_ipv4_mapped_ipv6;
mod e2e_ipv6_canonical;
mod e2e_is_bool_escape_symmetric;
mod e2e_is_json;
mod e2e_is_normalized;
mod e2e_is_precedence;
mod e2e_isfinite;
mod e2e_join_bucket_round576;
mod e2e_join_expr_key_round719;
mod e2e_join_group_by_key_round621;
mod e2e_join_side_filter_round574;
mod e2e_json_arrayagg;
mod e2e_json_extract_path;
mod e2e_json_family_round14;
mod e2e_json_family_round76;
mod e2e_json_field_fns;
mod e2e_json_object;
mod e2e_json_object_text;
mod e2e_json_table_format_round206;
mod e2e_json_table_nested_round207;
mod e2e_json_table_round205;
mod e2e_jsonb_array_elements;
mod e2e_jsonb_canonical_round603;
mod e2e_jsonb_canonical_round619;
mod e2e_jsonb_concat_delete;
mod e2e_jsonb_delete_path;
mod e2e_jsonb_each;
mod e2e_jsonb_exists_fns;
mod e2e_jsonb_modify_round234;
mod e2e_jsonb_object_keys;
mod e2e_jsonb_object_keys_from;
mod e2e_jsonb_path_exists;
mod e2e_jsonb_pretty;
mod e2e_jsonb_round38;
mod e2e_jsonb_scalar_cast_round113;
mod e2e_jsonb_set_lax;
mod e2e_jsonb_strip_nulls;
mod e2e_jsonb_subscript;
mod e2e_jsonb_total_order;
mod e2e_jsonb_typeof_array_length;
mod e2e_jsonpath_filter;
mod e2e_jsonpath_like_mac;
mod e2e_jsonpath_modes_round235;
mod e2e_large_object_round287;
mod e2e_last_insert_id_round347;
mod e2e_lastval;
mod e2e_lateral_correlated_srf;
mod e2e_lateral_srf_round759;
mod e2e_lateral_udf_round69;
mod e2e_ledger_phase2_recheck_round549;
mod e2e_length_bytes_round348;
mod e2e_levenshtein;
mod e2e_like_byte_scan_round484;
mod e2e_like_empty_escape;
mod e2e_like_fast_path_round488;
mod e2e_like_lazy_trailing_escape_round144;
mod e2e_limit_expr_round284;
mod e2e_limit_expr_round305;
mod e2e_limit_fetch_ties_round125;
mod e2e_limit_offset_order_round314;
mod e2e_limit_rowcount_round239;
mod e2e_listen_notify_round222;
mod e2e_literal_coercion_round71;
mod e2e_lo_descriptors_round306;
mod e2e_lo_file_round343;
mod e2e_load_call_pg_dump_compat;
mod e2e_locking_placement_round294;
mod e2e_logging_replication_probes;
mod e2e_logical_decoding_probes;
mod e2e_lseg_intersection;
mod e2e_maintenance_pg_dump_compat;
mod e2e_maintenance_targets_round535;
mod e2e_make_date_bc;
mod e2e_make_date_time;
mod e2e_make_date_validation;
mod e2e_make_time_type;
mod e2e_math_and_placement_round79;
mod e2e_math_fn_string_coerce;
mod e2e_math_funcs;
mod e2e_matview_watermark_round735;
mod e2e_merge_by_source_round146;
mod e2e_merge_insert_no_collist_round123;
mod e2e_merge_into_view_round148;
mod e2e_merge_returning_round130;
mod e2e_merge_values_source_round768;
mod e2e_merge_view_check_returning_round152;
mod e2e_merge_with_ctes_round149;
mod e2e_more_privilege_probes;
mod e2e_multi_srf_temporal_round96;
mod e2e_multirange_constructors;
mod e2e_multirange_ops;
mod e2e_multirange_round256;
mod e2e_mysql_advisory_lock_round417;
mod e2e_mysql_alter_index_round431;
mod e2e_mysql_auto_increment_zero_round433;
mod e2e_mysql_base64_sha2;
mod e2e_mysql_binary_literal_round367;
mod e2e_mysql_binary_string_ctx_round368;
mod e2e_mysql_bitwise_intctx_round384;
mod e2e_mysql_bitwise_unsigned_round383;
mod e2e_mysql_case_mixed_round398;
mod e2e_mysql_cast_round352;
mod e2e_mysql_char_fn_round396;
mod e2e_mysql_charset_fn_round377;
mod e2e_mysql_clock;
mod e2e_mysql_coercion_round351;
mod e2e_mysql_collate_binary_round370;
mod e2e_mysql_collate_expr_round371;
mod e2e_mysql_collation_round364;
mod e2e_mysql_column_fsp_round424;
mod e2e_mysql_column_labels_round506;
mod e2e_mysql_component_fns;
mod e2e_mysql_concat_null_round374;
mod e2e_mysql_conv_fns;
mod e2e_mysql_date_add_type_round373;
mod e2e_mysql_date_fns;
mod e2e_mysql_date_fns2;
mod e2e_mysql_datetime_compose_round418;
mod e2e_mysql_delete_order_limit_round432;
mod e2e_mysql_div_scale_round393;
mod e2e_mysql_enum_order_round401;
mod e2e_mysql_enum_ordinal_round402;
mod e2e_mysql_escape_table_round332;
mod e2e_mysql_extract_string_round382;
mod e2e_mysql_format;
mod e2e_mysql_format_round_round399;
mod e2e_mysql_fsp_render_round425;
mod e2e_mysql_generated_short_round379;
mod e2e_mysql_greatest_null_round400;
mod e2e_mysql_having_alias_round404;
mod e2e_mysql_implicit_commit_round435;
mod e2e_mysql_inet;
mod e2e_mysql_insert_ignore_round406;
mod e2e_mysql_insert_ignore_values_round434;
mod e2e_mysql_insert_set_round428;
mod e2e_mysql_int_range_round387;
mod e2e_mysql_int_temporal_round414;
mod e2e_mysql_int_width_round386;
mod e2e_mysql_interval_expr_round422;
mod e2e_mysql_interval_fn_round409;
mod e2e_mysql_is_true_round397;
mod e2e_mysql_json;
mod e2e_mysql_json_array;
mod e2e_mysql_json_merge;
mod e2e_mysql_json_mutate;
mod e2e_mysql_json_object_round391;
mod e2e_mysql_json_path;
mod e2e_mysql_json_render_round392;
mod e2e_mysql_json_search;
mod e2e_mysql_left_right_neg_round395;
mod e2e_mysql_logical_xor_round407;
mod e2e_mysql_loose_group_round405;
mod e2e_mysql_mod_infix_round394;
mod e2e_mysql_mod_zero_round372;
mod e2e_mysql_multi_table_delete_round421;
mod e2e_mysql_multi_table_update_round420;
mod e2e_mysql_non_strict_round470;
mod e2e_mysql_null_sort_round403;
mod e2e_mysql_operators_round353;
mod e2e_mysql_order_collation_round411;
mod e2e_mysql_pad_space_round375;
mod e2e_mysql_regexp_op_round380;
mod e2e_mysql_row_count_round426;
mod e2e_mysql_session_fns;
mod e2e_mysql_set_bitmask_round390;
mod e2e_mysql_set_fns;
mod e2e_mysql_setop_collation_round410;
mod e2e_mysql_sha1_hex_round415;
mod e2e_mysql_stddev_pop_round381;
mod e2e_mysql_str_coerce_round408;
mod e2e_mysql_string_fns;
mod e2e_mysql_substring_neg_round376;
mod e2e_mysql_temporal_precision_round423;
mod e2e_mysql_time_fns;
mod e2e_mysql_types_round360;
mod e2e_mysql_unique_fold_round365;
mod e2e_mysql_unsigned_arith_round467;
mod e2e_mysql_unsigned_wide_round389;
mod e2e_mysql_update_order_limit_round413;
mod e2e_mysql_upsert_count_round427;
mod e2e_mysql_upsert_select_round419;
mod e2e_mysql_user_vars_round430;
mod e2e_mysql_uuid_round416;
mod e2e_mysql_value_pick_collation_round412;
mod e2e_mysql_week_mode_round378;
mod e2e_mysqldump_preamble_round554;
mod e2e_name_encoding_round42;
mod e2e_name_type_round291;
mod e2e_named_args;
mod e2e_named_args_round77;
mod e2e_named_cast_round607;
mod e2e_named_constraints_round48;
mod e2e_named_timezones;
mod e2e_named_zone_wall_cast_round309;
mod e2e_nested_composite_round264;
mod e2e_nested_order_distinct_round529;
mod e2e_nested_over_computed_view_round155;
mod e2e_nested_view_dml_round136;
mod e2e_nested_with_round151;
mod e2e_nesting_budget_round507;
mod e2e_nontable_acl_round60;
mod e2e_normalize;
mod e2e_normalize_form;
mod e2e_not_null_detail_round117;
mod e2e_not_valid_round652;
mod e2e_notices_round46;
mod e2e_null_cast_target_round509;
mod e2e_nulls_not_distinct_catalog_round473;
mod e2e_num_nulls;
mod e2e_numeric_array_coercion_matrix;
mod e2e_numeric_array_to_float;
mod e2e_numeric_bignum;
mod e2e_numeric_cmp_pg_differential;
mod e2e_numeric_dedup;
mod e2e_numeric_fn_pg_differential;
mod e2e_numeric_ladder_round649;
mod e2e_numeric_literal_junk_round184;
mod e2e_numeric_negative_scale_round273;
mod e2e_numeric_overflow_message_round193;
mod e2e_numeric_pg_differential;
mod e2e_numeric_power;
mod e2e_numeric_precision_round272;
mod e2e_numeric_round19;
mod e2e_numeric_round20_bignum;
mod e2e_numeric_scale;
mod e2e_numeric_scale_round271;
mod e2e_numeric_scale_union;
mod e2e_numeric_special_arith;
mod e2e_numeric_special_render;
mod e2e_numeric_specials_round254;
mod e2e_numeric_string_arith;
mod e2e_numeric_string_compare;
mod e2e_numeric_template_round669;
mod e2e_numeric_to_int_rounds;
mod e2e_numeric_transcendental;
mod e2e_numeric_unconstrained_cast;
mod e2e_numeric_underscore_input;
mod e2e_numeric_underscore_sep;
mod e2e_numnode_tsquery;
mod e2e_oid_type_round667;
mod e2e_on_conflict_cardinality;
mod e2e_on_conflict_constraint;
mod e2e_on_conflict_returning_old_round129;
mod e2e_on_conflict_round240;
mod e2e_only_in_from_round644;
mod e2e_operator_precedence_round760;
mod e2e_operator_resolution_round238;
mod e2e_operator_surface_round508;
mod e2e_order_key_bound_round582;
mod e2e_orderby_implicit_label_round185;
mod e2e_orderby_legality_round232;
mod e2e_orderby_topk;
mod e2e_ordered_set_direct_args_round765;
mod e2e_ordered_set_round21;
mod e2e_ordered_set_round255;
mod e2e_overlay_and_bit_ops;
mod e2e_overload_round62;
mod e2e_pageinspect_probes;
mod e2e_pairwise_catalog_fns;
mod e2e_parse_error_shape_round323;
mod e2e_parse_ident;
mod e2e_partition_row_movement_round621;
mod e2e_pg_backend_start_time;
mod e2e_pg_backup_probes;
mod e2e_pg_bytes_pretty;
mod e2e_pg_cast_round635;
mod e2e_pg_catalog_columns_round542;
mod e2e_pg_catalog_columns_round543;
mod e2e_pg_catalog_content_round546;
mod e2e_pg_catalog_probe_funcs;
mod e2e_pg_catalog_reach_round541;
mod e2e_pg_column_size;
mod e2e_pg_dump_blockers_round539;
mod e2e_pg_filesystem_probes;
mod e2e_pg_get_constraintdef;
mod e2e_pg_get_indexdef;
mod e2e_pg_get_serial_sequence;
mod e2e_pg_get_viewdef;
mod e2e_pg_hash_ops;
mod e2e_pg_input_is_valid;
mod e2e_pg_internal_helpers;
mod e2e_pg_lock_status;
mod e2e_pg_lsn_ops;
mod e2e_pg_operator_round621;
mod e2e_pg_operator_round639;
mod e2e_pg_proc_round638;
mod e2e_pg_proc_round653;
mod e2e_pg_settings_widened;
mod e2e_pg_size_bytes;
mod e2e_pg_size_pretty_real;
mod e2e_pg_sleep_and_wal_probes;
mod e2e_pg_stat_counters;
mod e2e_pg_stat_get_bgwriter_wal;
mod e2e_pg_stat_get_db;
mod e2e_pg_stat_get_io_wal_checkpointer;
mod e2e_pg_stat_reset;
mod e2e_pg_stat_scan_probes;
mod e2e_pg_stat_statements_support;
mod e2e_pg_typeof_coverage;
mod e2e_pg_typeof_unknown_literal_round116;
mod e2e_pg_wal_lsn;
mod e2e_pgcrypto_digest;
mod e2e_pgcrypto_hmac;
mod e2e_pgcrypto_random;
mod e2e_pglsn_partition_srf;
mod e2e_pgstat_round24;
mod e2e_plain_cast_round613;
mod e2e_plpgsql_assert;
mod e2e_plpgsql_continue;
mod e2e_plpgsql_declare_infer;
mod e2e_plpgsql_exception;
mod e2e_plpgsql_execute_dynamic;
mod e2e_plpgsql_for_execute;
mod e2e_plpgsql_for_query;
mod e2e_plpgsql_for_range;
mod e2e_plpgsql_found;
mod e2e_plpgsql_loop_exit;
mod e2e_plpgsql_perform;
mod e2e_plpgsql_return_query;
mod e2e_plpgsql_scalar_round64;
mod e2e_plpgsql_stacked_diagnostics;
mod e2e_plpgsql_subquery_round335;
mod e2e_plpgsql_type_ref;
mod e2e_plpgsql_while;
mod e2e_positional_order_round80;
mod e2e_prepare_execute_pg_dump_compat;
mod e2e_prepared_sql_round277;
mod e2e_publication_ddl_round754;
mod e2e_qualified_wildcard_round128;
mod e2e_querytree;
mod e2e_quote_and_meta_funcs;
mod e2e_quote_pseudotypes;
mod e2e_raise_notice_round757;
mod e2e_random_int;
mod e2e_random_normal;
mod e2e_range_agg;
mod e2e_range_constructors;
mod e2e_range_intersect_agg;
mod e2e_range_predicates;
mod e2e_range_round25;
mod e2e_real_float4;
mod e2e_real_to_int_round112;
mod e2e_real_to_numeric_round110;
mod e2e_real_type_round269;
mod e2e_record_type_round285;
mod e2e_recorded_divergences_round522;
mod e2e_recursive_cte_round598;
mod e2e_recursive_paren_peer_round186;
mod e2e_recursive_worktable_round618;
mod e2e_redundant_begin_and_gin_expr_round475;
mod e2e_refresh_matview_round699;
mod e2e_reg_types_round513;
mod e2e_regclass_dual_round30;
mod e2e_regclass_forms_round337;
mod e2e_regclass_oid;
mod e2e_regex_are_round223;
mod e2e_regex_backref;
mod e2e_regex_compiled_round594;
mod e2e_regex_dot_newline;
mod e2e_regex_extended_flag;
mod e2e_regex_group_capture;
mod e2e_regex_reversed_range_round772;
mod e2e_regexp_15plus_family;
mod e2e_regexp_count;
mod e2e_regexp_match;
mod e2e_regexp_round26;
mod e2e_regproc_forms_round339;
mod e2e_regproc_round27;
mod e2e_regproc_value_round342;
mod e2e_regtype_arrays_round621;
mod e2e_regtype_oid_round648;
mod e2e_reindex_pg_dump_compat;
mod e2e_relation_oids_round338;
mod e2e_relation_size;
mod e2e_relation_sizes_round519;
mod e2e_renamed_view_dml_round133;
mod e2e_renamed_view_returning_round134;
mod e2e_replay_control_probes;
mod e2e_replication_slots_round550;
mod e2e_return_next_round66;
mod e2e_returning_old_new_round126;
mod e2e_reverse;
mod e2e_rls_role_membership_round202;
mod e2e_role_cleanup_pg_dump_compat;
mod e2e_roles_round58;
mod e2e_rollup;
mod e2e_rollup_nested_group_col;
mod e2e_round_negative_ndigits_round98;
mod e2e_row_is_null_round962;
mod e2e_rows_from_round74;
mod e2e_rowtypes_round28;
mod e2e_rule_conditional_instead_nothing_round141;
mod e2e_rule_do_also_round140;
mod e2e_rule_do_instead_command_round142;
mod e2e_rule_instead_nothing_round139;
mod e2e_rule_pg_rules_round143;
mod e2e_ruledef_deparse_round329;
mod e2e_ruleutils_round29;
mod e2e_scalar_subquery_null_key_round620;
mod e2e_scalar_subquery_type_round189;
mod e2e_scan_memory_round656;
mod e2e_security_definer_round334;
mod e2e_seek_skips_dead_round490;
mod e2e_sequence_functions_round244;
mod e2e_sequence_last_value;
mod e2e_sequence_sqlstate_round698;
mod e2e_session_identity_probes;
mod e2e_session_identity_round51;
mod e2e_session_in_catalog_scan_round522;
mod e2e_session_in_writes_round524;
mod e2e_session_isolation_round279;
mod e2e_session_probes;
mod e2e_session_state_pg_dump_compat;
mod e2e_session_timezone_round523;
mod e2e_set_config_unified;
mod e2e_set_constraints_named_round308;
mod e2e_set_constraints_pg_dump_compat;
mod e2e_set_local;
mod e2e_set_role_pg_dump_compat;
mod e2e_set_session_characteristics_pg_dump_compat;
mod e2e_setof_round65;
mod e2e_setop_index_round591;
mod e2e_setop_multiplicity_round121;
mod e2e_setop_types_round233;
mod e2e_setseed;
mod e2e_show_all;
mod e2e_show_create_table_round358;
mod e2e_show_pg_defaults;
mod e2e_signature_denials_round627;
mod e2e_similar_to_escape;
mod e2e_similar_to_operator;
mod e2e_similar_to_round31;
mod e2e_similarity_real_round766;
mod e2e_snapshot_export_probes;
mod e2e_sort_pruned_decode_round938;
mod e2e_soundex;
mod e2e_spg_catalog_round661;
mod e2e_spg_version;
mod e2e_srf_metadata_probes;
mod e2e_srf_nesting_round78;
mod e2e_srf_order_by_round600;
mod e2e_srf_order_by_round621;
mod e2e_srf_over_aggregate_round621;
mod e2e_srf_over_sources_round621;
mod e2e_srf_plan_round599;
mod e2e_srf_semantics_round120;
mod e2e_stack_depth_guard;
mod e2e_star_with_aggregates_round763;
mod e2e_starts_ends_with;
mod e2e_stat_repl_subscription;
mod e2e_stat_snapshot_timestamp;
mod e2e_stddev_exact_round615;
mod e2e_str_to_date;
mod e2e_stream_index_seek_round970;
mod e2e_string_agg_per_row_sep_round762;
mod e2e_string_borrow_round608;
mod e2e_string_pg_differential;
mod e2e_string_slice_round610;
mod e2e_string_to_table;
mod e2e_string_to_table_srf;
mod e2e_subplan_null_semantics_round127;
mod e2e_substr_text_position_round468;
mod e2e_substring_similar;
mod e2e_sum_bigint_numeric;
mod e2e_syntax_error_wording_round340;
mod e2e_syntax_gaps_round621;
mod e2e_system_array_types_round694;
mod e2e_system_columns_round512;
mod e2e_table_inheritance_round645;
mod e2e_table_write_stats_round192;
mod e2e_target_srf_round67;
mod e2e_temp_persistence_round526;
mod e2e_temp_sequence_view_round469;
mod e2e_temp_table_visibility_round437;
mod e2e_temporal_array_cast_round326;
mod e2e_temporal_precision_cast;
mod e2e_temporary_tables_round436;
mod e2e_time_keywords_round755;
mod e2e_time_range_wording_round764;
mod e2e_timestamp_round32;
mod e2e_timestamp_wall_cast_round289;
mod e2e_timestampdiff;
mod e2e_timestamptz_array_round310;
mod e2e_timestamptz_typing;
mod e2e_timezone_round221;
mod e2e_to_bin_oct;
mod e2e_to_char_elements_round629;
mod e2e_to_char_formatting;
mod e2e_to_char_grouping_round632;
mod e2e_to_char_leading_dollar;
mod e2e_to_char_numeric_precision;
mod e2e_to_char_signs_round631;
mod e2e_to_char_templates_round628;
mod e2e_to_char_tm_round101;
mod e2e_to_date;
mod e2e_to_hex;
mod e2e_to_number;
mod e2e_to_regclass;
mod e2e_to_timestamp;
mod e2e_to_timestamp_ww;
mod e2e_tochar_templates_round243;
mod e2e_tokenizer_round651;
mod e2e_topk_boundary_round581;
mod e2e_topk_floor_round580;
mod e2e_topk_recycle_round571;
mod e2e_tranche5_fixes_round769;
mod e2e_tranche6_fixes_round770;
mod e2e_trig;
mod e2e_trigger_context_round637;
mod e2e_trigger_name_order_round755;
mod e2e_trigger_tgvars_round82;
mod e2e_trigger_when_round138;
mod e2e_trunc_negative_ndigits_round99;
mod e2e_trunc_numeric;
mod e2e_truncate;
mod e2e_truth_value_round346;
mod e2e_ts_delete_filter;
mod e2e_ts_headline;
mod e2e_ts_rank;
mod e2e_ts_rewrite;
mod e2e_tsquery_bool;
mod e2e_tsquery_eq;
mod e2e_tsquery_order;
mod e2e_tsquery_xid_round37;
mod e2e_tsvector_array;
mod e2e_tsvector_order;
mod e2e_tsvector_position_clamp_round753;
mod e2e_tsvector_strip_delete;
mod e2e_tx_abort;
mod e2e_txid;
mod e2e_type_phrase_owner_round344;
mod e2e_typed_datetime_literals;
mod e2e_typmod_array_cast_round777;
mod e2e_tz_abbreviations;
mod e2e_udf_query_round63;
mod e2e_udf_round61;
mod e2e_udf_tail_round68;
mod e2e_unary_plus_round507;
mod e2e_unconstrained_numeric;
mod e2e_unicode_encoding_probes;
mod e2e_unicode_string;
mod e2e_unistr;
mod e2e_unix_timestamp_round356;
mod e2e_unknown_literal_bool_round620;
mod e2e_unlogged_table;
mod e2e_unnest_tsvector_round758;
mod e2e_unsigned_cast_round527;
mod e2e_updatability_probes;
mod e2e_update_from_alias_round241;
mod e2e_update_from_unqualified_round533;
mod e2e_user_types_in_pg_type_round621;
mod e2e_using_values_sources_round778;
mod e2e_uuid_v5_v3;
mod e2e_uuid_xml_round35;
mod e2e_uuidv7;
mod e2e_uuidv7_wallclock;
mod e2e_vacuum_statement_round169;
mod e2e_validate_only_round696;
mod e2e_validate_only_round697;
mod e2e_value_cmp_round672;
mod e2e_value_compare_pg_differential;
mod e2e_varbit_round33;
mod e2e_variadic_array_round100;
mod e2e_varlena_round34;
mod e2e_view_check_option_round132;
mod e2e_view_columns_round268;
mod e2e_view_replace_round81;
mod e2e_view_updatable_round267;
mod e2e_viewdef_layout_round336;
mod e2e_visibility_and_property_probes;
mod e2e_wal_utility_probes;
mod e2e_websearch_edges_round756;
mod e2e_win1252_encoding;
mod e2e_win125x_encoding;
mod e2e_window_bound_keys_round593;
mod e2e_window_exclude_group_ties_round109;
mod e2e_window_frame_modes_round122;
mod e2e_window_generic_agg_round230;
mod e2e_window_incremental_round589;
mod e2e_window_index_seek_round975;
mod e2e_window_int_order_key_round979;
mod e2e_window_named_errors_round229;
mod e2e_window_pg_differential;
mod e2e_window_rowbuf_round592;
mod e2e_window_sum_int_type;
mod e2e_with_reloptions;
mod e2e_with_rollup_round472;
mod e2e_work_mem_verified_round555;
mod e2e_write_skew_round552;
mod e2e_xact_id_probes;
mod e2e_xid_operators_round641;
mod e2e_xid_type_round640;
mod e2e_xml_probes;
mod e2e_xml_wellformed;
mod e2e_xmlconcat_xmlagg_round111;
mod e2e_xmltext_concat;
mod e2e_zero_arg_crashes_round636;
// v7.38 元机制 D unit pins.
mod e2e_anyall_subquery;
mod e2e_array_operators;
mod e2e_array_pg_differential;
mod e2e_array_slice;
mod e2e_at_time_zone;
mod e2e_b4_lateral_probe;
mod e2e_c1_gap_probe;
mod e2e_cardinality_modulo;
mod e2e_cast_pg_differential;
mod e2e_cast_time_arith;
mod e2e_composite_field;
mod e2e_date_trunc_units;
mod e2e_default_expr_text;
mod e2e_encode_bytea;
mod e2e_env_cfg_disable_joinfold;
mod e2e_env_cfg_disable_topk;
mod e2e_env_cfg_explain_no_costs;
mod e2e_env_cfg_plan_deterministic;
mod e2e_env_cfg_random_seed;
mod e2e_env_cfg_stats_frozen;
mod e2e_exists_decorrelation;
#[allow(
    clippy::cast_lossless,
    clippy::cast_precision_loss,
    clippy::cast_sign_loss,
    clippy::doc_markdown,
    clippy::similar_names,
    clippy::uninlined_format_args
)]
mod e2e_explain_analyze;
mod e2e_explain_costs_off;
mod e2e_explain_options;
mod e2e_explain_suggest_composite;
mod e2e_expression_index;
mod e2e_extract_fields;
mod e2e_fetch_with_ties;
mod e2e_filter_clause;
mod e2e_fk_advanced;
mod e2e_fk_alter;
mod e2e_fk_catalog;
mod e2e_fk_chaos;
mod e2e_fk_delete_cascade;
mod e2e_fk_delete_restrict;
mod e2e_fk_delete_set;
mod e2e_fk_insert;
mod e2e_fk_update;
mod e2e_floor;
mod e2e_for_update;
mod e2e_format;
mod e2e_frame_exclude;
mod e2e_fts;
mod e2e_fulltext_gin_seek;
mod e2e_fulltext_index;
mod e2e_fulltext_planner;
mod e2e_gen_random_csprng;
mod e2e_generate_series;
mod e2e_generate_series_join;
mod e2e_generate_series_ordinality;
mod e2e_generated_stored;
mod e2e_generated_virtual;
mod e2e_geometry;
mod e2e_get_ddl;
mod e2e_gin_jsonb;
mod e2e_gin_trgm_partial;
mod e2e_greatest_least;
mod e2e_group_by_all;
mod e2e_groupby_pos_describe_limit;
mod e2e_hnsw_opclass;
mod e2e_identity_always;
mod e2e_in_list_depth;
mod e2e_in_list_index_seek;
mod e2e_include;
mod e2e_index_advisor;
mod e2e_inet_contains;
mod e2e_inet_types;
mod e2e_info_mysql_views;
mod e2e_information_schema_added;
mod e2e_information_schema_attributes;
mod e2e_information_schema_domains;
mod e2e_inline_column_constraints;
mod e2e_inline_pk;
mod e2e_insert_select;
mod e2e_int_array;
mod e2e_int_overflow;
mod e2e_int_type_aliases;
mod e2e_interval_array;
mod e2e_interval_cast;
mod e2e_interval_column_storage;
mod e2e_interval_scaling;
mod e2e_isolation_levels;
mod e2e_join_peer_predicate;
mod e2e_join_pg_differential;
mod e2e_join_using;
mod e2e_json_build;
mod e2e_json_builder_whitespace;
mod e2e_json_path;
mod e2e_jsonb;
mod e2e_jsonb_epic6;
mod e2e_jsonb_object_agg_dedup;
mod e2e_jsonb_path_query;
mod e2e_jsonb_pg_differential;
mod e2e_key_column;
mod e2e_lateral_generate_series;
mod e2e_lateral_join;
mod e2e_lateral_jsonb_each_text;
mod e2e_lateral_unnest;
mod e2e_left_right;
mod e2e_limit_placeholder;
mod e2e_lpad_rpad;
mod e2e_materialized_view;
#[allow(
    clippy::cast_lossless,
    clippy::cast_precision_loss,
    clippy::cast_sign_loss,
    clippy::doc_markdown,
    clippy::similar_names,
    clippy::uninlined_format_args
)]
mod e2e_memoize;
mod e2e_memory_stats;
mod e2e_merge;
mod e2e_mod;
mod e2e_multi_col_exists_pullup;
mod e2e_multi_col_index;
mod e2e_multirange;
mod e2e_mysql_conditional;
mod e2e_mysql_inline_enum;
mod e2e_mysql_inline_set;
mod e2e_mysql_procedure;
mod e2e_mysql_time_alias;
mod e2e_mysql_tinyint1_coerce;
mod e2e_mysql_upsert;
mod e2e_mysql_user_db;
mod e2e_mysql_view_algorithm;
mod e2e_mysql_year;
mod e2e_named_window;
mod e2e_network_bit_xml;
mod e2e_now_bare_call;
mod e2e_null_logic_pg_differential;
mod e2e_nullif;
mod e2e_numeric_cast_scale;
mod e2e_on_conflict_composite;
mod e2e_on_conflict_nothing;
mod e2e_on_conflict_update;
mod e2e_on_update_current_timestamp;
mod e2e_operator_symbols;
mod e2e_order_by_multi;
mod e2e_orderby_using_operator;
mod e2e_overlaps;
mod e2e_parallel_agg;
mod e2e_partial_index;
mod e2e_partition_attach_detach;
mod e2e_partition_by_list_hash;
mod e2e_partition_by_range;
mod e2e_partition_explain;
mod e2e_partition_pruning;
mod e2e_per_table_budget;
mod e2e_pg_am_collation;
mod e2e_pg_amcheck;
mod e2e_pg_array_2d;
mod e2e_pg_attribute_widened;
mod e2e_pg_class_widened;
mod e2e_pg_constraint_view;
mod e2e_pg_customer_parity;
mod e2e_pg_database_roles_view;
mod e2e_pg_enum_view;
mod e2e_pg_hstore;
mod e2e_pg_index_widened;
mod e2e_pg_indexes_view;
mod e2e_pg_inherits_depend;
mod e2e_pg_money;
mod e2e_pg_namespace_view;
mod e2e_pg_proc_view;
mod e2e_pg_proc_widened;
mod e2e_pg_publication_filter_accept;
mod e2e_pg_publication_view;
mod e2e_pg_range;
mod e2e_pg_replication_slots;
mod e2e_pg_settings_view;
mod e2e_pg_stat_activity;
mod e2e_pg_stat_archiver_replication;
mod e2e_pg_stat_bgwriter_tablespace;
mod e2e_pg_stat_checkpointer_wal;
mod e2e_pg_stat_database;
mod e2e_pg_stat_database_spill_round884;
mod e2e_pg_stat_io_functions;
mod e2e_pg_stat_progress_views;
mod e2e_pg_stat_statements;
mod e2e_pg_stat_user_indexes;
mod e2e_pg_stat_user_tables;
mod e2e_pg_statio_user_tables;
mod e2e_pg_statistic_views;
mod e2e_pg_subscription_view;
mod e2e_pg_time;
mod e2e_pg_timetz;
mod e2e_pg_type_view;
mod e2e_pg_type_widened;
mod e2e_pg_typeof;
mod e2e_pg_typeof_null_round871;
mod e2e_pg_views_view;
mod e2e_pgdump_compat;
mod e2e_plan_cache;
mod e2e_plan_cache_invalidation;
mod e2e_power;
mod e2e_projection_bind_once_round957;
mod e2e_query_clause_pg_differential;
mod e2e_quoted_type_cast_round894;
mod e2e_random;
mod e2e_recursive_cte_values;
mod e2e_recursive_cte_wellformed_round145;
mod e2e_redo_capture;
mod e2e_regexp_family;
mod e2e_repeat;
mod e2e_replace;
mod e2e_returning;
mod e2e_rls_catalog;
mod e2e_rls_enforce;
mod e2e_round;
mod e2e_round5_alter_and_trigger;
mod e2e_round5_misc;
mod e2e_round6_surfaces;
mod e2e_round7_surfaces;
mod e2e_row_cmp_subquery;
mod e2e_row_comparison;
mod e2e_row_constructor;
mod e2e_row_in_subquery;
mod e2e_row_is_null;
mod e2e_rows_from;
mod e2e_runtime_default;
mod e2e_schema;
mod e2e_select_star_agg;
mod e2e_sentori_cutover;
mod e2e_sequence;
mod e2e_serial;
mod e2e_session_funcs;
mod e2e_setof_aggregate;
mod e2e_show_create_table;
mod e2e_show_databases;
mod e2e_show_misc_mysql;
mod e2e_sign;
mod e2e_slow_query;
mod e2e_snapshot;
mod e2e_sorted_stream_children_round882;
mod e2e_spg_stat_query;
mod e2e_spg_stat_views;
mod e2e_split_part;
mod e2e_sql_funcs;
mod e2e_sqrt;
mod e2e_srf_unnest_projection;
mod e2e_string_agg;
mod e2e_strpos;
mod e2e_subquery_pg_differential;
mod e2e_substring_from_for;
mod e2e_table_constraints_engine;
mod e2e_table_shorthand_collate;
mod e2e_table_shorthand_round869;
mod e2e_tablesample;
mod e2e_text_array;
mod e2e_timestamptz;
mod e2e_tinyint_bool;
mod e2e_to_char_numeric;
#[allow(
    clippy::cast_lossless,
    clippy::cast_possible_truncation,
    clippy::cast_precision_loss,
    clippy::cast_sign_loss,
    clippy::doc_markdown,
    clippy::similar_names,
    clippy::uninlined_format_args
)]
mod e2e_tpch;
mod e2e_transactional_ddl;
mod e2e_translate;
mod e2e_trigger;
mod e2e_trim;
mod e2e_trim_position_syntax;
mod e2e_trunc;
#[allow(
    clippy::cast_possible_truncation,
    clippy::cast_sign_loss,
    clippy::doc_markdown,
    clippy::uninlined_format_args
)]
mod e2e_two_tier;
mod e2e_unique_collation;
mod e2e_unique_index;
mod e2e_unique_nulls_not_distinct;
mod e2e_unnest_multi;
mod e2e_unsigned;
mod e2e_update_correlated;
mod e2e_update_from_delete_using;
mod e2e_update_set_forms;
mod e2e_update_uniqueness;
mod e2e_uuid;
mod e2e_view;
mod e2e_view_auto_updatable;
mod e2e_whole_row_ref;
mod e2e_window_groups_frame;
mod e2e_window_in_join;
mod e2e_window_null_treatment;
mod e2e_window_with_join;
mod e2e_with_ordinality;
mod e2e_writable_cte;
mod e2e_writable_cte_select;
mod mailrs_round26;
mod mailrs_round30;
mod mailrs_round31;
mod mvcc_pg_differential;