Skip to content

Test #17244

Draft
Mariamalmesfer wants to merge 7 commits intofacebookincubator:mainfrom
Mariamalmesfer:test-velox-latest
Draft

Test #17244
Mariamalmesfer wants to merge 7 commits intofacebookincubator:mainfrom
Mariamalmesfer:test-velox-latest

Conversation

@Mariamalmesfer
Copy link
Copy Markdown
Contributor

No description provided.

rui-mo and others added 7 commits April 19, 2026 21:17
Alchemy-item: (ID = 1270) [OAP] Support struct schema evolution matching by name commit 1/1 - 4316ae5
…ter join

Signed-off-by: Yuan <yuanzhou@apache.org>

Alchemy-item: (ID = 1227) [OAP] [11771] Fix smj result mismatch issue commit 1/1 - 987fd37
Alchemy-item: (ID = 1253) [OAP] feat: Enable the hash join to accept a pre-built hash table for joining	 commit 1/1 - 89b6d41
Signed-off-by: Yuan <yuanzhou@apache.org>
@netlify
Copy link
Copy Markdown

netlify Bot commented Apr 19, 2026

Deploy Preview for meta-velox canceled.

Name Link
🔨 Latest commit e012627
🔍 Latest deploy log https://app.netlify.com/projects/meta-velox/deploys/69e51dca512bdb0008c664e5

@meta-cla meta-cla Bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Apr 19, 2026
@github-actions
Copy link
Copy Markdown

CI Failure Analysis

❌ Build — BUILD Failure View logs

Build errors:

The build fails in step "Build Fuzzer Targets" when compiling velox/core/PlanNode.h (and subsequently PlanNode.cpp). The root cause is a bad merge in the HashJoinNode class definition in PlanNode.h — new parameters and initializers were inserted without removing or replacing the existing lines they conflict with.

velox/core/PlanNode.h:3319:67: error: expected ';' at end of member declaration
      std::shared_ptr<OpaqueHashTable> reusableHashTable = nullptr)
                                                                   ^
velox/core/PlanNode.h:3320:26: error: expected ';' at end of member declaration
      bool nullAsValue = false)
                          ^~~~~
velox/core/PlanNode.h:3330:30: error: expected unqualified-id before ',' token
        nullAware_{nullAware},
velox/core/PlanNode.h:6348:2: error: expected ';' after class definition

These cascade into ~25+ errors across PlanNode.h, PlanNode.cpp, and PlanFragment.h.

Three specific merge conflict sites in the diff:

  1. Constructor parameter list (~line 3317): The new reusableHashTable parameter line ends with ) but the old nullAsValue line also ends with ), resulting in two closing parens:

    // BAD (current diff):
          std::shared_ptr<OpaqueHashTable> reusableHashTable = nullptr)  // <-- closes param list
          bool nullAsValue = false)  // <-- orphaned line, syntax error
  2. Initializer list (~line 3330): The new reusableHashTable_ initializer ends with { to open the constructor body, but then the old nullAsValue_ and useHashTableCache_ initializer lines follow with their own {:

    // BAD (current diff):
          reusableHashTable_(std::move(reusableHashTable)) {  // <-- opens body
          nullAsValue_{nullAsValue},                          // <-- orphaned
          useHashTableCache_{useHashTableCache} {             // <-- duplicate body open
  3. Builder::build() (~line 3427): Same pattern — new line closes the call with ) and old line also closes:

    // BAD (current diff):
              reusableHashTable_.value_or(nullptr));  // <-- closes call
              nullAsValue_.value_or(false));          // <-- orphaned

Correlation with PR changes:
This failure is directly caused by the PR changes. The diff for velox/core/PlanNode.h shows new lines inserted into the HashJoinNode constructor, initializer list, and Builder::build() method without properly merging with the existing code. The old nullAsValue and useHashTableCache lines that should have been integrated into the new code were left in place, creating syntax errors.

Known issues:
No known open issues for this failure. This is not a pre-existing or flaky failure — it is a compile error introduced by this PR.

Recommended fix:
Resolve the merge conflicts in velox/core/PlanNode.h by properly integrating the new joinHasNullKeys and reusableHashTable parameters with the existing nullAsValue and useHashTableCache parameters. Specifically:

  1. In the constructor parameter list, combine both old and new parameters with a single closing ).
  2. In the initializer list, combine all member initializers and end with a single {.
  3. In Builder::build(), pass all arguments in the correct order with a single closing );.
  4. Also check PlanNode.cpp for corresponding merge issues (the RPCNode methods at lines 4248+ also show namespace/scope errors that appear related).

@github-actions
Copy link
Copy Markdown

CI Failure Analysis

All three build failures share the same root cause: a merge conflict in velox/core/PlanNode.h that was not properly resolved. The PR adds new parameters (joinHasNullKeys, reusableHashTable) to the HashJoinNode constructor, but the existing nullAsValue parameter lines were left in place alongside the new lines, producing invalid C++.

❌ Fedora debug — BUILD Failure View logs

❌ Ubuntu debug with system dependencies — BUILD Failure View logs

❌ Linux release with adapters — BUILD Failure View logs

Build errors (same across all three jobs):

velox/core/PlanNode.h:3319:67: error: expected ';' at end of member declaration
velox/core/PlanNode.h:3320:26: error: expected ';' at end of member declaration
velox/core/PlanNode.h:3320:31: error: expected unqualified-id before ')' token
velox/core/PlanNode.h:3330:30: error: expected unqualified-id before ',' token
velox/core/PlanNode.h:3331:46: error: expected unqualified-id before ',' token
velox/core/PlanNode.h:3332:42: error: expected unqualified-id before ',' token
velox/core/PlanNode.h:6348:2: error: expected ';' after class definition

These cascade into ~30 more errors in PlanNode.h, PlanFragment.h, PlanFragment.cpp, and PlanNode.cpp (classes like MixedUnionNode, RPCNode become undeclared due to the broken header).


Correlation with PR changes:

This is directly caused by the PR changes to velox/core/PlanNode.h. The diff shows duplicate/conflicting lines in three locations within the HashJoinNode class:

  1. Constructor parameter list (around line 3317-3320): The PR adds joinHasNullKeys and reusableHashTable parameters with a closing ), but the original bool nullAsValue = false) line is also present — resulting in two closing parentheses and invalid syntax.
// Current (broken) state in the diff:
      bool useHashTableCache = false,
      bool joinHasNullKeys = false,
      std::shared_ptr<OpaqueHashTable> reusableHashTable = nullptr)  // <-- closes param list
      bool nullAsValue = false)                                       // <-- duplicate close
  1. Initializer list (around line 3328-3332): Both the new and old initializer assignments are present:
        nullAware_{nullAware},
        useHashTableCache_{useHashTableCache},      // new
        joinHasNullKeys_{joinHasNullKeys},           // new
        reusableHashTable_(std::move(reusableHashTable)) {  // new - closes init list
        nullAsValue_{nullAsValue},                   // old - duplicate
        useHashTableCache_{useHashTableCache} {      // old - duplicate
  1. Builder::build() (around line 3425-3428): Same pattern — new args added but old closing line remains.

Known issues: No open issues found for this failure.

Main branch status: The last 3 runs on main all passed, confirming this is not a pre-existing/flaky failure.


Recommended fix:

Rebase the PR onto the latest main and properly resolve the merge conflict in velox/core/PlanNode.h. The new parameters (joinHasNullKeys, reusableHashTable) need to be integrated with the existing parameter list — nullAsValue should remain as the last constructor parameter, and the initializer list should include all members exactly once. Specifically:

  1. Constructor: merge the parameter lists so nullAsValue comes after reusableHashTable
  2. Initializer list: include nullAware_, nullAsValue_, useHashTableCache_, joinHasNullKeys_, and reusableHashTable_ each exactly once
  3. Builder::build(): pass all arguments once, including nullAsValue

Similarly, PlanNode.cpp will need the same merge resolution for MixedUnionNode / RPCNode if those were also affected by conflicting changes.

@github-actions
Copy link
Copy Markdown

Build Impact Analysis

Selective Build Targets (building these covers all 514 affected)

cmake --build _build/release --target aggregate_companion_functions_test bias_vector_test cached_factory_test copy_benchmark file_utils_test physical_size_aggregator_test presto_sql_test simple_lru_cache_test simple_vector_test spark_aggregation_fuzzer_test spark_expression_fuzzer_test velox_abfs_test velox_aggregates_GeometryAggregateTest velox_aggregates_reduce_agg_bm velox_aggregates_simple_aggregates_bm velox_aggregates_string_keys_bm velox_aggregates_test_group0 velox_aggregates_test_group1 velox_aggregates_test_group2 velox_aggregates_test_group3 velox_aggregates_test_group4 velox_aggregation_fuzzer_test velox_aggregation_runner_test velox_arrow_bridge_test velox_base_test velox_benchmark_array_writer_no_nulls velox_benchmark_array_writer_with_nulls velox_benchmark_basic_comparison_conjunct velox_benchmark_basic_decoded_vector velox_benchmark_basic_preproc velox_benchmark_basic_selectivity_vector velox_benchmark_basic_simple_arithmetic velox_benchmark_basic_simple_cast velox_benchmark_basic_vector_compare velox_benchmark_basic_vector_fuzzer velox_benchmark_basic_vector_slice velox_benchmark_estimate_flat_size velox_benchmark_expr_flat_no_nulls velox_benchmark_feature_normalization velox_benchmark_map_writer_no_nulls velox_benchmark_map_writer_with_nulls velox_benchmark_nested_array_writer_no_nulls velox_benchmark_nested_array_writer_with_nulls velox_buffer_test velox_cache_fuzzer velox_cache_test_group0 velox_cast_benchmark velox_common_base_benchmarks velox_common_compression_test velox_common_encode_test velox_common_geospatial_serde_test velox_common_hyperloglog_dense_hll_bm velox_common_hyperloglog_test velox_common_indexed_priority_queue_benchmark velox_common_sorting_network_benchmark velox_common_split_block_bloom_filter_benchmark velox_common_stringsearch_benchmarks velox_common_test velox_concurrent_allocation_benchmark velox_config_test velox_connector_test velox_constrained_input_generators_test velox_constrained_vector_generator_test velox_core_plan_consistency_checker_test velox_core_test velox_demo_rpc_function_test velox_driver_test velox_duckdb_conversion_test velox_dwio_arrow_parquet_writer_test velox_dwio_cache_test velox_dwio_common_bitpack_decoder_benchmark velox_dwio_common_data_buffer_benchmark velox_dwio_common_int_decoder_benchmark velox_dwio_common_test velox_dwio_dwrf_buffered_output_stream_test velox_dwio_dwrf_byte_rle_encoder_test velox_dwio_dwrf_byte_rle_test velox_dwio_dwrf_checksum_test velox_dwio_dwrf_column_reader_test velox_dwio_dwrf_column_statistics_test velox_dwio_dwrf_compression_test velox_dwio_dwrf_config_test velox_dwio_dwrf_data_buffer_holder_test velox_dwio_dwrf_decompression_test velox_dwio_dwrf_decryption_test velox_dwio_dwrf_dictionary_encoder_test velox_dwio_dwrf_dictionary_encoding_utils_test velox_dwio_dwrf_encoding_selector_test velox_dwio_dwrf_encryption_test velox_dwio_dwrf_flush_policy_test velox_dwio_dwrf_index_builder_test velox_dwio_dwrf_int_direct_test velox_dwio_dwrf_int_encoder_test velox_dwio_dwrf_layout_planner_test velox_dwio_dwrf_ratio_checker_test velox_dwio_dwrf_reader_base_test velox_dwio_dwrf_reader_test velox_dwio_dwrf_rle_test velox_dwio_dwrf_rlev1_encoder_test velox_dwio_dwrf_stream_labels_test velox_dwio_dwrf_stripe_dictionary_cache_test velox_dwio_dwrf_stripe_reader_base_test velox_dwio_dwrf_stripe_stream_test velox_dwio_dwrf_utils_test velox_dwio_dwrf_writer_context_test velox_dwio_dwrf_writer_encoding_manager_test velox_dwio_dwrf_writer_sink_test velox_dwio_dwrf_writer_test velox_dwio_iceberg_reader_benchmark velox_dwio_orc_column_statistics_test velox_dwio_orc_reader_filter_test velox_dwio_orc_reader_test velox_dwio_parquet_common_test velox_dwio_parquet_page_reader_test velox_dwio_parquet_reader_benchmark velox_dwio_parquet_reader_test velox_dwio_parquet_rlebp_decoder_test velox_dwio_parquet_structure_decoder_benchmark velox_dwio_parquet_structure_decoder_test velox_dwio_parquet_table_scan_test velox_dwio_parquet_thrift_test velox_dwio_parquet_tpch_test velox_dwrf_column_writer_index_test velox_dwrf_column_writer_stats_test velox_dwrf_column_writer_test velox_dwrf_e2e_filter_test velox_dwrf_e2e_reader_test velox_dwrf_e2e_writer_test velox_dwrf_float_column_writer_benchmark velox_dwrf_int_encoder_benchmark velox_dwrf_statistics_builder_utils_test velox_dwrf_writer_extended_test velox_dwrf_writer_flush_test velox_example_expression_eval velox_example_opaque_type velox_example_operator_extensibility velox_example_scan_orc velox_example_simple_functions velox_example_vector_reader_writer velox_exchange_benchmark velox_exchange_fuzzer velox_exec_SpatialJoinTest velox_exec_bm_duplicate_project velox_exec_infra_test velox_exec_prefixsort_test velox_exec_test_group0 velox_exec_test_group1 velox_exec_test_group2 velox_exec_test_group3 velox_exec_test_group4 velox_exec_test_group5 velox_exec_test_group6 velox_exec_test_group7 velox_exec_util_test_group0 velox_exec_vector_hasher_benchmark velox_expression_fuzzer_test velox_expression_fuzzer_unit_test velox_expression_runner_test velox_expression_runner_unit_test velox_expression_test velox_expression_verifier_unit_test velox_file_test velox_filemetadata_test velox_filter_benchmark velox_filter_project_benchmark velox_format_datetime_benchmark velox_fragmentation_benchmark velox_function_dynamic velox_function_dynamic_link_test velox_function_err_dynamic velox_function_non_default_dynamic velox_function_registry_test velox_functions_aggregates_test velox_functions_benchmarks_compare velox_functions_benchmarks_row_writer_no_nulls velox_functions_benchmarks_simdjson_function_with_expr velox_functions_benchmarks_string_writer_no_nulls velox_functions_benchmarks_url velox_functions_iceberg_test velox_functions_json_test velox_functions_lib_test velox_functions_prestosql_benchmarks_array_contains velox_functions_prestosql_benchmarks_array_min_max velox_functions_prestosql_benchmarks_array_position velox_functions_prestosql_benchmarks_array_sum velox_functions_prestosql_benchmarks_bitwise velox_functions_prestosql_benchmarks_cardinality velox_functions_prestosql_benchmarks_comparisons velox_functions_prestosql_benchmarks_concat velox_functions_prestosql_benchmarks_date_time velox_functions_prestosql_benchmarks_field_reference velox_functions_prestosql_benchmarks_generic velox_functions_prestosql_benchmarks_in velox_functions_prestosql_benchmarks_map_concat velox_functions_prestosql_benchmarks_map_input velox_functions_prestosql_benchmarks_map_subscript velox_functions_prestosql_benchmarks_map_zip_with velox_functions_prestosql_benchmarks_not velox_functions_prestosql_benchmarks_regexp_replace velox_functions_prestosql_benchmarks_row velox_functions_prestosql_benchmarks_string_ascii_utf_functions velox_functions_prestosql_benchmarks_uuid_cast velox_functions_prestosql_benchmarks_width_bucket velox_functions_prestosql_benchmarks_zip velox_functions_prestosql_benchmarks_zip_with velox_functions_sfm_test velox_functions_spark_aggregates_test velox_functions_spark_test velox_functions_string_test velox_functions_test velox_fuzzer_connector_test velox_gcs_file_test velox_gcs_insert_test velox_gcs_multiendpoints_test velox_gcsfile_example velox_hash_benchmark velox_hash_join_build_benchmark velox_hash_join_list_result_benchmark velox_hash_join_prepare_join_table_benchmark velox_hdfs_file_test velox_hdfs_insert_test velox_hierarchical_timer_test velox_hive_connector_test velox_hive_iceberg_deletion_vector_test velox_hive_iceberg_deletion_vector_writer_test velox_hive_iceberg_dwrf_insert_test velox_hive_iceberg_equality_delete_test velox_hive_iceberg_insert_test velox_hive_iceberg_test velox_hive_paimon_connector velox_hive_paimon_data_file_meta_test velox_hive_paimon_deletion_file_test velox_hive_paimon_row_kind_test velox_hive_paimon_split_test velox_hive_partition_function_benchmark velox_id_map_test velox_in_10_min_demo velox_join_fuzzer velox_key_encoder_test velox_like_benchmark velox_like_tpch_benchmark velox_mark_distinct_fuzzer velox_mark_sorted_benchmark velox_memcpy_meter velox_memory_arbitration_fuzzer velox_memory_test velox_merge_benchmark velox_mock_rpc_client_test velox_negated_bigint_range_benchmark velox_negated_bytes_range_benchmark velox_negated_bytes_values_benchmark velox_negated_values_filter_benchmark velox_numeric_upcast_benchmark velox_orderby_benchmark velox_overload_int_function_dynamic velox_overload_varchar_function_dynamic velox_overwrite_int_function_dynamic velox_overwrite_varchar_function_dynamic velox_parquet_e2e_filter_test velox_parquet_writer_sink_test velox_parquet_writer_test velox_parse_test velox_prefix_sort_algorithm_benchmark velox_prefixsort_benchmark velox_presto_type_parser_test velox_presto_types_fuzzer_utils_test velox_presto_types_test velox_prestosql_coverage velox_process_test velox_query_config_provider_test velox_query_replayer velox_re2_functions_benchmarks velox_read_benchmark velox_row_number_fuzzer velox_row_serializer_benchmark velox_row_test velox_rpc_node_test velox_rpc_operator_test velox_rpc_state_test velox_s3config_test velox_s3file_test velox_s3finalize_test velox_s3insert_test velox_s3metrics_test velox_s3multiendpoints_test velox_s3read_test velox_s3registration_test velox_scoped_registry_test velox_serialization_test velox_serializer_benchmark velox_serializer_test_group0 velox_signature_parser_test velox_simple_aggregate_test velox_sort_benchmark velox_spark_function_registry_test velox_spark_query_runner_test velox_spark_types_test velox_spark_windows_test velox_sparksql_benchmarks_cast velox_sparksql_benchmarks_compare velox_sparksql_benchmarks_from_json velox_sparksql_benchmarks_get_funcs velox_sparksql_benchmarks_hash velox_sparksql_benchmarks_in velox_sparksql_benchmarks_simd_compare velox_sparksql_benchmarks_split velox_sparksql_coverage velox_spatial_join_benchmark velox_spatial_join_fuzzer velox_spiller_aggregate_benchmark velox_spiller_join_benchmark velox_streaming_aggregation_benchmark velox_string_core_benchmark velox_string_view_benchmark velox_table_evolution_fuzzer_test velox_test_util_test velox_text_reader_test velox_text_writer_test velox_time_test velox_tool_trace_test velox_topn_row_number_fuzzer velox_tpcds_connector_test velox_tpcds_gen_test velox_tpch_benchmark velox_tpch_connector_test velox_tpch_gen_test velox_tpch_speed_test velox_trace_file_tool velox_type_fbhive_test velox_type_serializer_fbhive_test velox_type_test velox_type_tz_ext_invalid_test velox_type_tz_test velox_unsafe_row_serialize_benchmark velox_vector_fuzzer_test velox_vector_hash_all_benchmark velox_vector_map_update_benchmark velox_vector_selectivity_vector_benchmark velox_vector_test velox_wave_benchmark velox_wave_common_test velox_wave_decode_test velox_wave_exec_test velox_window_fuzzer_test velox_window_prefixsort_benchmark velox_window_sub_partitioned_sort_benchmark velox_windows_agg_test velox_windows_rank_test velox_windows_value_test velox_writer_fuzzer_test

Total affected: 514/567 targets

Warning: 1 file(s) could not be mapped to any target. A full build may be needed.

  • velox/vector/arrow/CMakeLists.txt
Affected targets (514)

Directly changed (437)

Target Changed Files
aggregate_companion_functions_test PlanNode.h, Type.h
bias_vector_test Type.h
copy_benchmark Type.h
physical_size_aggregator_test Type.h
presto_sql_test PlanNode.h, Type.h
simple_vector_test SimpleFunctionApi.h, Type.h
spark_aggregation_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h
spark_expression_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_abfs Type.h
velox_abfs_test Type.h
velox_aggregates PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_GeometryAggregateTest HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_reduce_agg_bm HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_simple_aggregates_bm HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_string_keys_bm HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_test_group0 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_test_group1 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_test_group2 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_test_group3 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregates_test_group4 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregation_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregation_fuzzer_base PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregation_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregation_result_verifier PlanNode.h, SimpleFunctionApi.h, Type.h
velox_aggregation_runner_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_arrow_bridge ArrowSchemaMetadata.h, Bridge.cpp, SimpleFunctionApi.h, Type.h
velox_arrow_bridge_test ArrowBridgeArrayTest.cpp, ArrowBridgeSchemaTest.cpp, ArrowSchemaMetadata.h, SimpleFunctionApi.h, Type.h
velox_async_rpc_function_registry Type.h
velox_base_test PlanNode.h, Type.h
velox_benchmark_array_writer_no_nulls SimpleFunctionApi.h, Type.h
velox_benchmark_array_writer_with_nulls SimpleFunctionApi.h, Type.h
velox_benchmark_basic_comparison_conjunct SimpleFunctionApi.h, Type.h
velox_benchmark_basic_decoded_vector SimpleFunctionApi.h, Type.h
velox_benchmark_basic_preproc SimpleFunctionApi.h, Type.h
velox_benchmark_basic_selectivity_vector SimpleFunctionApi.h, Type.h
velox_benchmark_basic_simple_arithmetic SimpleFunctionApi.h, Type.h
velox_benchmark_basic_simple_cast SimpleFunctionApi.h, Type.h
velox_benchmark_basic_vector_compare SimpleFunctionApi.h, Type.h
velox_benchmark_basic_vector_fuzzer SimpleFunctionApi.h, Type.h
velox_benchmark_basic_vector_slice SimpleFunctionApi.h, Type.h
velox_benchmark_builder SimpleFunctionApi.h, Type.h
velox_benchmark_estimate_flat_size SimpleFunctionApi.h, Type.h
velox_benchmark_expr_flat_no_nulls SimpleFunctionApi.h, Type.h
velox_benchmark_feature_normalization SimpleFunctionApi.h, Type.h
velox_benchmark_map_writer_no_nulls SimpleFunctionApi.h, Type.h
velox_benchmark_map_writer_with_nulls SimpleFunctionApi.h, Type.h
velox_benchmark_nested_array_writer_no_nulls SimpleFunctionApi.h, Type.h
velox_benchmark_nested_array_writer_with_nulls SimpleFunctionApi.h, Type.h
velox_cache_fuzzer_lib Type.h
velox_cache_test_group0 Type.h
velox_caching Type.h
velox_cast_benchmark SimpleFunctionApi.h, Type.h
velox_common_base Type.h
velox_common_fuzzer_util Type.h
velox_common_geospatial_serde SimpleFunctionApi.h, Type.h
velox_common_geospatial_serde_test SimpleFunctionApi.h, Type.h
velox_common_hyperloglog Type.h
velox_common_hyperloglog_dense_hll_bm Type.h
velox_common_hyperloglog_test Type.h
velox_common_test Type.h
velox_connector Type.h
velox_connector_registry Type.h
velox_connector_test Type.h
velox_constrained_input_generators SimpleFunctionApi.h, Type.h
velox_constrained_input_generators_test SimpleFunctionApi.h, Type.h
velox_constrained_vector_generator SimpleFunctionApi.h, Type.h
velox_constrained_vector_generator_test SimpleFunctionApi.h, Type.h
velox_core PlanNode.h, SimpleFunctionApi.h, Type.h
velox_core_plan_consistency_checker_test PlanNode.h, Type.h
velox_core_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_coverage_util PlanNode.h, SimpleFunctionApi.h, Type.h
velox_cursor PlanNode.h, SimpleFunctionApi.h, Type.h
velox_demo_rpc_function Type.h
velox_demo_rpc_function_test Type.h
velox_driver_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_duckdb_conversion Type.h
velox_duckdb_conversion_test PlanNode.h, Type.h
velox_duckdb_parser Type.h
velox_dwio_arrow_parquet_writer Type.h
velox_dwio_arrow_parquet_writer_lib Type.h
velox_dwio_arrow_parquet_writer_test PlanNode.h, Type.h
velox_dwio_cache_test Type.h
velox_dwio_common PlanNode.h, ScanSpec.cpp, SelectiveFlatMapColumnReader.h, SelectiveStructColumnReader.cpp, SelectiveStructColumnReader.h, ... (+2 more)
velox_dwio_common_compression Type.h
velox_dwio_common_int_decoder_benchmark Type.h
velox_dwio_common_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_common_test_utils PlanNode.h, Type.h
velox_dwio_dwrf_buffered_output_stream_test Type.h
velox_dwio_dwrf_byte_rle_encoder_test Type.h
velox_dwio_dwrf_byte_rle_test Type.h
velox_dwio_dwrf_column_reader_test Type.h
velox_dwio_dwrf_column_statistics_test Type.h
velox_dwio_dwrf_common Type.h
velox_dwio_dwrf_compression_test Type.h
velox_dwio_dwrf_config_test Type.h
velox_dwio_dwrf_data_buffer_holder_test Type.h
velox_dwio_dwrf_decompression_test Type.h
velox_dwio_dwrf_decryption_test Type.h
velox_dwio_dwrf_dictionary_encoder_test Type.h
velox_dwio_dwrf_dictionary_encoding_utils_test Type.h
velox_dwio_dwrf_encryption_test Type.h
velox_dwio_dwrf_flush_policy_test Type.h
velox_dwio_dwrf_index_builder_test Type.h
velox_dwio_dwrf_int_direct_test Type.h
velox_dwio_dwrf_int_encoder_test Type.h
velox_dwio_dwrf_layout_planner_test Type.h
velox_dwio_dwrf_reader DwrfReader.cpp, PlanNode.h, SelectiveFlatMapColumnReader.cpp, SelectiveFlatMapColumnReader.h, SelectiveStructColumnReader.cpp, ... (+2 more)
velox_dwio_dwrf_reader_base_test Type.h
velox_dwio_dwrf_reader_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_dwrf_rle_test Type.h
velox_dwio_dwrf_rlev1_encoder_test Type.h
velox_dwio_dwrf_stripe_dictionary_cache_test Type.h
velox_dwio_dwrf_stripe_reader_base_test Type.h
velox_dwio_dwrf_stripe_stream_test Type.h
velox_dwio_dwrf_utils Type.h
velox_dwio_dwrf_utils_test Type.h
velox_dwio_dwrf_writer Type.h
velox_dwio_dwrf_writer_context_test Type.h
velox_dwio_dwrf_writer_encoding_manager_test Type.h
velox_dwio_dwrf_writer_sink_test Type.h
velox_dwio_dwrf_writer_test Type.h
velox_dwio_faulty_file_sink Type.h
velox_dwio_iceberg_reader_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_iceberg_reader_benchmark_lib PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_native_parquet_reader ParquetColumnReader.cpp, ParquetColumnReader.h, ParquetReader.cpp, PlanNode.h, RepeatedColumnReader.cpp, ... (+5 more)
velox_dwio_orc_column_statistics_test Type.h
velox_dwio_orc_reader PlanNode.h, Type.h
velox_dwio_orc_reader_filter_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_orc_reader_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_parquet_common Type.h
velox_dwio_parquet_page_reader_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_parquet_reader PlanNode.h, Type.h
velox_dwio_parquet_reader_benchmark PlanNode.h, Type.h
velox_dwio_parquet_reader_benchmark_lib PlanNode.h, Type.h
velox_dwio_parquet_reader_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_parquet_structure_decoder_benchmark Type.h
velox_dwio_parquet_structure_decoder_test Type.h
velox_dwio_parquet_table_scan_test HashBuild.h, ParquetTableScanTest.cpp, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_parquet_thrift_test Type.h
velox_dwio_parquet_tpch_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwio_parquet_writer Type.h
velox_dwio_text_reader PlanNode.h, Type.h
velox_dwio_text_reader_register PlanNode.h, Type.h
velox_dwio_text_writer Type.h
velox_dwio_text_writer_register Type.h
velox_dwrf_column_writer_index_test Type.h
velox_dwrf_column_writer_stats_test PlanNode.h, Type.h
velox_dwrf_column_writer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwrf_e2e_filter_test PlanNode.h, Type.h
velox_dwrf_e2e_reader_test PlanNode.h, Type.h
velox_dwrf_e2e_writer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_dwrf_float_column_writer_benchmark Type.h
velox_dwrf_int_encoder_benchmark Type.h
velox_dwrf_statistics_builder_utils_test Type.h
velox_dwrf_test_utils PlanNode.h, Type.h
velox_dwrf_writer_extended_test Type.h
velox_dwrf_writer_flush_test Type.h
velox_example_expression_eval SimpleFunctionApi.h, Type.h
velox_example_opaque_type SimpleFunctionApi.h, Type.h
velox_example_operator_extensibility PlanNode.h, SimpleFunctionApi.h, Type.h
velox_example_scan_orc PlanNode.h, Type.h
velox_example_simple_functions SimpleFunctionApi.h, Type.h
velox_example_vector_reader_writer SimpleFunctionApi.h, Type.h
velox_exchange_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exchange_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec HashBuild.cpp, HashBuild.h, HashProbe.cpp, MergeJoin.cpp, MergeJoin.h, ... (+3 more)
velox_exec_SpatialJoinTest HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_bm_duplicate_project HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_infra_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_prefixsort_test SimpleFunctionApi.h, Type.h
velox_exec_prefixsort_test_lib Type.h
velox_exec_test_group0 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_group1 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_group2 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_group3 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_group4 HashBuild.h, HashJoinTest.cpp, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_group5 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_group6 HashBuild.h, PlanNode.h, SimpleFunctionApi.h, TableScanTest.cpp, Type.h
velox_exec_test_group7 HashBuild.h, MergeJoinTest.cpp, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_test_lib HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_util_test_group0 PlanNode.h, SimpleFunctionApi.h, Type.h
velox_exec_vector_hasher_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression SimpleFunctionApi.h, Type.h
velox_expression_functions Type.h
velox_expression_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_fuzzer_test_utility SimpleFunctionApi.h, Type.h
velox_expression_fuzzer_unit_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_runner PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_runner_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_runner_unit_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, SimpleFunctionTest.cpp, Type.h
velox_expression_test_utility PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_verifier PlanNode.h, SimpleFunctionApi.h, Type.h
velox_expression_verifier_unit_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_file Type.h
velox_file_test Type.h
velox_filemetadata_test Type.h
velox_filter_benchmark Type.h
velox_filter_project_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_format_datetime_benchmark SimpleFunctionApi.h, Type.h
velox_function_dynamic SimpleFunctionApi.h, Type.h
velox_function_dynamic_link_test SimpleFunctionApi.h, Type.h
velox_function_err_dynamic SimpleFunctionApi.h, Type.h
velox_function_non_default_dynamic SimpleFunctionApi.h, Type.h
velox_function_registry SimpleFunctionApi.h, Type.h
velox_function_registry_test SimpleFunctionApi.h, Type.h
velox_functions_aggregates PlanNode.h, SimpleFunctionApi.h, Type.h
velox_functions_aggregates_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_functions_aggregates_test_lib HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_functions_benchmarks_compare SimpleFunctionApi.h, Type.h
velox_functions_benchmarks_row_writer_no_nulls SimpleFunctionApi.h, Type.h
velox_functions_benchmarks_simdjson_function_with_expr SimpleFunctionApi.h, Type.h
velox_functions_benchmarks_string_writer_no_nulls SimpleFunctionApi.h, Type.h
velox_functions_benchmarks_url SimpleFunctionApi.h, Type.h
velox_functions_geo SimpleFunctionApi.h, Type.h
velox_functions_iceberg SimpleFunctionApi.h, Type.h
velox_functions_iceberg_test SimpleFunctionApi.h, Type.h
velox_functions_lib SimpleFunctionApi.h, Type.h
velox_functions_lib_test SimpleFunctionApi.h, Type.h
velox_functions_prestosql SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_array_contains SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_array_min_max SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_array_position SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_array_sum SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_bitwise SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_cardinality SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_comparisons SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_concat SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_date_time SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_field_reference SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_generic SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_in SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_map_concat Type.h
velox_functions_prestosql_benchmarks_map_input SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_map_subscript SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_map_zip_with SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_not SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_regexp_replace SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_row SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_string_ascii_utf_functions SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_uuid_cast SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_width_bucket SimpleFunctionApi.h, Type.h
velox_functions_prestosql_benchmarks_zip Type.h
velox_functions_prestosql_benchmarks_zip_with SimpleFunctionApi.h, Type.h
velox_functions_prestosql_impl SimpleFunctionApi.h, Type.h
velox_functions_sfm Type.h
velox_functions_sfm_test Type.h
velox_functions_spark SimpleFunctionApi.h, Type.h
velox_functions_spark_aggregates PlanNode.h, SimpleFunctionApi.h, Type.h
velox_functions_spark_aggregates_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_functions_spark_impl SimpleFunctionApi.h, Type.h
velox_functions_spark_specialforms SimpleFunctionApi.h, Type.h
velox_functions_spark_test SimpleFunctionApi.h, Type.h
velox_functions_spark_window Type.h
velox_functions_string_test Type.h
velox_functions_test SimpleFunctionApi.h, Type.h, TypeOfTest.cpp
velox_functions_test_lib SimpleFunctionApi.h, Type.h
velox_functions_util Type.h
velox_functions_window PlanNode.h, SimpleFunctionApi.h, Type.h
velox_functions_window_test_lib HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_fuzzer_connector SimpleFunctionApi.h, Type.h
velox_fuzzer_connector_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_fuzzer_util PlanNode.h, SimpleFunctionApi.h, Type.h
velox_gcs Type.h
velox_gcs_insert_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_gcs_multiendpoints_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hash_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hash_join_build_benchmark HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hash_join_list_result_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hash_join_prepare_join_table_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hdfs Type.h
velox_hdfs_insert_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_connector FileSplitReader.cpp, HiveDataSource.cpp, HiveSplitReader.cpp, HiveSplitReader.h, PlanNode.h, ... (+2 more)
velox_hive_connector_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_iceberg_deletion_vector_test Type.h
velox_hive_iceberg_deletion_vector_writer_test Type.h
velox_hive_iceberg_dwrf_insert_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_iceberg_equality_delete_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_iceberg_insert_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_iceberg_splitreader PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_iceberg_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_paimon_connector PlanNode.h, SimpleFunctionApi.h, Type.h
velox_hive_paimon_split Type.h
velox_hive_paimon_split_test Type.h
velox_hive_partition_function PlanNode.h, Type.h
velox_hive_partition_function_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_id_map Type.h
velox_id_map_test Type.h
velox_in_10_min_demo PlanNode.h, SimpleFunctionApi.h, Type.h
velox_is_null_functions Type.h
velox_join_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_key_encoder PlanNode.h, Type.h
velox_key_encoder_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_like_benchmark SimpleFunctionApi.h, Type.h
velox_like_tpch_benchmark SimpleFunctionApi.h, Type.h
velox_mark_distinct_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_mark_distinct_fuzzer_lib PlanNode.h, SimpleFunctionApi.h, Type.h
velox_mark_sorted_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_memory Type.h
velox_memory_arbitration_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_memory_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_merge_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_negated_bigint_range_benchmark Type.h
velox_negated_bytes_range_benchmark Type.h
velox_negated_bytes_values_benchmark Type.h
velox_negated_values_filter_benchmark Type.h
velox_numeric_upcast_benchmark SimpleFunctionApi.h, Type.h
velox_orderby_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_orderby_benchmark_util SimpleFunctionApi.h, Type.h
velox_overload_int_function_dynamic SimpleFunctionApi.h, Type.h
velox_overload_varchar_function_dynamic SimpleFunctionApi.h, Type.h
velox_overwrite_int_function_dynamic SimpleFunctionApi.h, Type.h
velox_overwrite_varchar_function_dynamic SimpleFunctionApi.h, Type.h
velox_parquet_e2e_filter_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_parquet_writer_sink_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_parquet_writer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_parse_expression Type.h
velox_parse_parser PlanNode.h, Type.h
velox_parse_test PlanNode.h, Type.h
velox_parse_utils PlanNode.h, Type.h
velox_prefix_sort_algorithm_benchmark Type.h
velox_prefixsort_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_presto_serializer SimpleFunctionApi.h, Type.h
velox_presto_type_parser Type.h
velox_presto_type_parser_test Type.h, TypeParserTest.cpp
velox_presto_types PlanNode.h, SimpleFunctionApi.h, Type.h
velox_presto_types_fuzzer_utils PlanNode.h, SimpleFunctionApi.h, Type.h
velox_presto_types_fuzzer_utils_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_presto_types_test SimpleFunctionApi.h, Type.h
velox_prestosql_coverage Type.h
velox_query_benchmark HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_query_replayer PlanNode.h, Type.h
velox_query_trace_replayer_base PlanNode.h, SimpleFunctionApi.h, Type.h
velox_re2_functions_benchmarks SimpleFunctionApi.h, Type.h
velox_row_fast Type.h
velox_row_number_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_row_number_fuzzer_lib PlanNode.h, SimpleFunctionApi.h, Type.h
velox_row_serializer_benchmark SimpleFunctionApi.h, Type.h
velox_row_test SimpleFunctionApi.h, Type.h
velox_rpc_function_stubs Type.h
velox_rpc_node_test PlanNode.h, Type.h
velox_rpc_operator PlanNode.h, Type.h
velox_rpc_operator_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_rpc_plan_node_translator PlanNode.h, Type.h
velox_rpc_state Type.h
velox_rpc_state_test Type.h
velox_s3file_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_s3fs Type.h
velox_s3insert_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_s3metrics_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_s3multiendpoints_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_s3read_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_s3registration_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_serializer_benchmark SimpleFunctionApi.h, Type.h
velox_serializer_test_group0 SimpleFunctionApi.h, Type.h
velox_signature_parser Type.h
velox_signature_parser_test Type.h
velox_simple_aggregate PlanNode.h, SimpleFunctionApi.h, Type.h
velox_simple_aggregate_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_sort_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spark_function_registry_test SimpleFunctionApi.h, Type.h
velox_spark_query_runner PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spark_query_runner_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spark_types SimpleFunctionApi.h, Type.h
velox_spark_types_test SimpleFunctionApi.h, Type.h
velox_spark_windows_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_sparksql_benchmarks_cast SimpleFunctionApi.h, Type.h
velox_sparksql_benchmarks_compare SimpleFunctionApi.h, Type.h
velox_sparksql_benchmarks_from_json Type.h
velox_sparksql_benchmarks_get_funcs SimpleFunctionApi.h
velox_sparksql_benchmarks_hash SimpleFunctionApi.h, Type.h
velox_sparksql_benchmarks_in SimpleFunctionApi.h, Type.h
velox_sparksql_benchmarks_simd_compare SimpleFunctionApi.h, Type.h
velox_sparksql_benchmarks_split SimpleFunctionApi.h, Type.h
velox_sparksql_coverage PlanNode.h, Type.h
velox_spatial_join_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spatial_join_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spill_fuzzer_base_lib PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spiller_aggregate_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spiller_aggregate_benchmark_base PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spiller_join_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_spiller_join_benchmark_base PlanNode.h, SimpleFunctionApi.h, Type.h
velox_streaming_aggregation_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_string_view_benchmark Type.h
velox_table_evolution_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_text_reader_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_text_writer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tool_trace_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_topn_row_number_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_topn_row_number_fuzzer_lib PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tpcds_append_info Type.h
velox_tpcds_connector Type.h
velox_tpcds_connector_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tpcds_gen Type.h
velox_tpcds_gen_test Type.h
velox_tpch_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tpch_benchmark_lib PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tpch_connector PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tpch_connector_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_tpch_gen Type.h
velox_tpch_gen_test Type.h
velox_tpch_speed_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_trace PlanNode.h, Type.h
velox_type SimpleFunctionApi.h, Type.cpp, Type.h
velox_type_fbhive Type.h
velox_type_fbhive_test Type.h
velox_type_serializer_fbhive_test Type.h
velox_type_test SimpleFunctionApi.h, Type.h, TypeTest.cpp
velox_unsafe_row_serialize_benchmark SimpleFunctionApi.h, Type.h
velox_vector SimpleFunctionApi.h, Type.h
velox_vector_fuzzer SimpleFunctionApi.h, Type.h
velox_vector_fuzzer_test SimpleFunctionApi.h, Type.h
velox_vector_fuzzer_util SimpleFunctionApi.h, Type.h
velox_vector_hash_all_benchmark SimpleFunctionApi.h, Type.h
velox_vector_map_update_benchmark Type.h
velox_vector_test SimpleFunctionApi.h, Type.h
velox_vector_test_lib SimpleFunctionApi.h, Type.h
velox_wave_benchmark PlanNode.h, SimpleFunctionApi.h, Type.h
velox_wave_common Type.h
velox_wave_dwio PlanNode.h, Type.h
velox_wave_exec HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_wave_exec_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_wave_mock_file Type.h
velox_wave_mock_reader PlanNode.h, SimpleFunctionApi.h, Type.h
velox_wave_stream PlanNode.h, Type.h
velox_wave_vector SimpleFunctionApi.h, Type.h
velox_window PlanNode.h, SimpleFunctionApi.h, Type.h
velox_window_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_window_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h
velox_window_prefixsort_benchmark HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_window_sub_partitioned_sort_benchmark HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_windows_agg_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_windows_rank_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_windows_value_test HashBuild.h, PlanNode.h, SimpleFunctionApi.h, Type.h
velox_writer_fuzzer PlanNode.h, SimpleFunctionApi.h, Type.h
velox_writer_fuzzer_test PlanNode.h, SimpleFunctionApi.h, Type.h

Transitively affected (77)

  • cached_factory_test
  • file_utils_test
  • simple_lru_cache_test
  • velox_buffer
  • velox_buffer_test
  • velox_cache_fuzzer
  • velox_common_base_benchmarks
  • velox_common_compression
  • velox_common_compression_test
  • velox_common_config
  • velox_common_encode_test
  • velox_common_indexed_priority_queue_benchmark
  • velox_common_sorting_network_benchmark
  • velox_common_split_block_bloom_filter_benchmark
  • velox_common_stringsearch_benchmarks
  • velox_concurrent_allocation_benchmark
  • velox_config_property
  • velox_config_test
  • velox_dwio_arrow_parquet_writer_test_lib
  • velox_dwio_arrow_parquet_writer_util_lib
  • velox_dwio_catalog_fbhive
  • velox_dwio_common_bitpack_decoder_benchmark
  • velox_dwio_common_data_buffer_benchmark
  • velox_dwio_common_exception
  • velox_dwio_dwrf_checksum_test
  • velox_dwio_dwrf_encoding_selector_test
  • velox_dwio_dwrf_ratio_checker_test
  • velox_dwio_dwrf_stream_labels_test
  • velox_dwio_parquet_common_test
  • velox_dwio_parquet_rlebp_decoder_test
  • velox_dynamic_library_loader
  • velox_exception
  • velox_file_test_utils
  • velox_fragmentation_benchmark
  • velox_functions_iceberg_hash
  • velox_functions_json
  • velox_functions_json_test
  • velox_functions_lib_date_time_formatter
  • velox_gcs_file_test
  • velox_gcsfile_example
  • velox_hdfs_file_test
  • velox_hierarchical_timer
  • velox_hierarchical_timer_test
  • velox_hive_config
  • velox_hive_paimon_data_file_meta_test
  • velox_hive_paimon_deletion_file_test
  • velox_hive_paimon_row_kind_test
  • velox_memcpy_meter
  • velox_mock_rpc_client
  • velox_mock_rpc_client_test
  • velox_process
  • velox_process_test
  • velox_query_config_provider
  • velox_query_config_provider_test
  • velox_read_benchmark
  • velox_read_benchmark_lib
  • velox_s3config_test
  • velox_s3finalize_test
  • velox_scoped_registry_test
  • velox_serialization
  • velox_serialization_test
  • velox_string_core_benchmark
  • velox_test_util
  • velox_test_util_test
  • velox_time
  • velox_time_test
  • velox_tpcds_dsdgen
  • velox_trace_file_tool
  • velox_trace_file_tool_base
  • velox_type_calculation
  • velox_type_signature
  • velox_type_tz_ext_invalid_test
  • velox_type_tz_test
  • velox_vector_selectivity_vector_benchmark
  • velox_wave_common_test
  • velox_wave_decode
  • velox_wave_decode_test

Slow path • Graph generated from PR branch

@Mariamalmesfer Mariamalmesfer changed the title Test velox latest Test Apr 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants