Skip to content

Commit

Permalink
remove rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Jun 11, 2024
1 parent 5cb0627 commit d28f42f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions velox/exec/fuzzer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

add_library(velox_fuzzer_util DuckQueryRunner.cpp PrestoQueryRunner.cpp)
add_library(velox_fuzzer_util DuckQueryRunner.cpp PrestoQueryRunner.cpp
FuzzerUtil.cpp)

target_link_libraries(
velox_fuzzer_util
Expand Down Expand Up @@ -76,13 +77,13 @@ target_link_libraries(

add_library(velox_join_fuzzer JoinFuzzer.cpp)

velox_link_libraries(
target_link_libraries(
velox_join_fuzzer velox_type velox_vector_fuzzer velox_fuzzer_util
velox_exec_test_lib velox_expression_test_utility)

velox_add_library(velox_writer_fuzzer WriterFuzzer.cpp)
add_library(velox_writer_fuzzer WriterFuzzer.cpp)

velox_link_libraries(
target_link_libraries(
velox_writer_fuzzer
velox_fuzzer_util
velox_type
Expand All @@ -92,9 +93,9 @@ velox_link_libraries(
velox_temp_path
velox_vector_test_lib)

velox_add_library(velox_memory_arbitration_fuzzer MemoryArbitrationFuzzer.cpp)
add_library(velox_memory_arbitration_fuzzer MemoryArbitrationFuzzer.cpp)

velox_link_libraries(
target_link_libraries(
velox_memory_arbitration_fuzzer
velox_fuzzer_util
velox_type
Expand All @@ -104,6 +105,5 @@ velox_link_libraries(
velox_functions_prestosql
velox_aggregates)

velox_link_libraries(velox_join_fuzzer velox_type velox_vector_fuzzer
velox_exec_test_lib velox_expression_test_utility)
target_link_libraries(velox_join_fuzzer velox_type velox_vector_fuzzer
velox_exec_test_lib velox_expression_test_utility)
4 changes: 2 additions & 2 deletions velox/functions/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ velox_add_library(velox_functions_util LambdaFunctionUtil.cpp

velox_link_libraries(velox_functions_util velox_vector velox_common_base)

add_library(velox_functions_lib_date_time_formatter
velox_add_library(velox_functions_lib_date_time_formatter
DateTimeFormatter.cpp DateTimeFormatterBuilder.cpp)

target_link_libraries(velox_functions_lib_date_time_formatter velox_type_tz)
velox_link_libraries(velox_functions_lib_date_time_formatter velox_type_tz)

velox_add_library(
velox_functions_lib
Expand Down
2 changes: 1 addition & 1 deletion velox/functions/prestosql/types/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
velox_add_library(velox_presto_types HyperLogLogType.cpp JsonType.cpp
TimestampWithTimeZoneType.cpp)
TimestampWithTimeZoneType.cpp UuidType.cpp)

velox_link_libraries(velox_presto_types velox_memory velox_expression velox_functions_util
velox_functions_json velox_functions_lib_date_time_formatter)
Expand Down

0 comments on commit d28f42f

Please sign in to comment.