| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| add_subdirectory(avro) |
| add_subdirectory(hbase) |
| add_subdirectory(json) |
| add_subdirectory(kudu) |
| add_subdirectory(orc) |
| add_subdirectory(parquet) |
| add_subdirectory(rcfile) |
| add_subdirectory(sequence) |
| add_subdirectory(text) |
| add_subdirectory(iceberg-metadata) |
| |
| # where to put generated libraries |
| set(LIBRARY_OUTPUT_PATH "${BUILD_OUTPUT_ROOT_DIRECTORY}/exec") |
| |
| # where to put generated binaries |
| set(EXECUTABLE_OUTPUT_PATH "${BUILD_OUTPUT_ROOT_DIRECTORY}/exec") |
| |
| add_library(ExecIr |
| grouping-aggregator-ir.cc |
| hdfs-columnar-scanner-ir.cc |
| hdfs-scanner-ir.cc |
| non-grouping-aggregator-ir.cc |
| partitioned-hash-join-builder-ir.cc |
| partitioned-hash-join-node-ir.cc |
| select-node-ir.cc |
| topn-node-ir.cc |
| union-node-ir.cc |
| ) |
| |
| add_dependencies(ExecIr gen-deps) |
| |
| add_library(Exec |
| acid-metadata-utils.cc |
| aggregation-node.cc |
| aggregation-node-base.cc |
| aggregator.cc |
| analytic-eval-node.cc |
| base-sequence-scanner.cc |
| blocking-join-node.cc |
| blocking-plan-root-sink.cc |
| buffered-plan-root-sink.cc |
| cardinality-check-node.cc |
| catalog-op-executor.cc |
| data-sink.cc |
| data-source-scan-node.cc |
| delimited-text-parser.cc |
| empty-set-node.cc |
| exec-node.cc |
| exchange-node.cc |
| external-data-source-executor.cc |
| file-metadata-utils.cc |
| filter-context.cc |
| grouping-aggregator.cc |
| grouping-aggregator-partition.cc |
| hash-table.cc |
| hdfs-columnar-scanner.cc |
| hdfs-scan-node.cc |
| hdfs-scan-node-base.cc |
| hdfs-scan-node-mt.cc |
| hdfs-scanner.cc |
| hdfs-table-sink.cc |
| hdfs-table-writer.cc |
| hdfs-text-table-writer.cc |
| iceberg-buffered-delete-sink.cc |
| iceberg-delete-builder.cc |
| iceberg-delete-node.cc |
| iceberg-delete-sink-base.cc |
| iceberg-delete-sink-config.cc |
| incr-stats-util.cc |
| join-builder.cc |
| iceberg-merge-node.cc |
| iceberg-merge-sink.cc |
| multi-table-sink.cc |
| nested-loop-join-builder.cc |
| nested-loop-join-node.cc |
| non-grouping-aggregator.cc |
| partial-sort-node.cc |
| partitioned-hash-join-builder.cc |
| partitioned-hash-join-node.cc |
| plan-root-sink.cc |
| read-write-util.cc |
| scan-node.cc |
| scanner-context.cc |
| select-node.cc |
| singular-row-src-node.cc |
| sort-node.cc |
| streaming-aggregation-node.cc |
| subplan-node.cc |
| system-table-scan-node.cc |
| system-table-scanner.cc |
| table-sink-base.cc |
| text-converter.cc |
| topn-node.cc |
| tuple-cache-node.cc |
| tuple-file-reader.cc |
| tuple-file-writer.cc |
| tuple-text-file-reader.cc |
| tuple-text-file-writer.cc |
| tuple-text-file-util.cc |
| union-node.cc |
| unnest-node.cc |
| ) |
| |
| add_dependencies(Exec gen-deps) |
| |
| if (BUILD_WITH_NO_TESTS) |
| return() |
| endif() |
| |
| add_library(ExecTests STATIC |
| acid-metadata-utils-test.cc |
| delimited-text-parser-test.cc |
| hash-table-test.cc |
| incr-stats-util-test.cc |
| read-write-util-test.cc |
| tuple-file-read-write-test.cc |
| tuple-text-file-util-test.cc |
| zigzag-test.cc |
| ) |
| add_dependencies(ExecTests gen-deps) |
| |
| ADD_UNIFIED_BE_LSAN_TEST(acid-metadata-utils-test ValidWriteIdListTest.*) |
| ADD_UNIFIED_BE_LSAN_TEST(zigzag-test ZigzagTest.*) |
| ADD_UNIFIED_BE_LSAN_TEST(hash-table-test HashTableTest.*) |
| ADD_UNIFIED_BE_LSAN_TEST(delimited-text-parser-test DelimitedTextParser.*) |
| ADD_UNIFIED_BE_LSAN_TEST(read-write-util-test ReadWriteUtil.*) |
| ADD_UNIFIED_BE_LSAN_TEST(tuple-file-read-write-test TupleFileReadWriteTest.*) |
| ADD_UNIFIED_BE_LSAN_TEST(tuple-text-file-util-test TupleTextFileUtilTest.*) |
| # Exception to unified be tests: Custom main with global Frontend object |
| ADD_BE_LSAN_TEST(row-batch-list-test) |
| ADD_BE_LSAN_TEST(scratch-tuple-batch-test) |
| ADD_UNIFIED_BE_LSAN_TEST(incr-stats-util-test IncrStatsUtilTest.*) |