Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CORE-8525] - Iceberg schema evolution #24676

Merged
merged 12 commits into from
Jan 8, 2025
Merged
43 changes: 40 additions & 3 deletions src/v/iceberg/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,44 @@ redpanda_cc_library(
],
)

redpanda_cc_library(
name = "compatibility_types",
srcs = [
"compatibility_types.cc",
],
hdrs = [
"compatibility_types.h",
],
include_prefix = "iceberg",
visibility = ["//visibility:public"],
deps = [
":datatypes",
"//src/v/base",
"//src/v/ssx:sformat",
"@fmt",
"@seastar",
],
)

redpanda_cc_library(
name = "compatibility_utils",
srcs = [],
hdrs = [
"compatibility_utils.h",
],
include_prefix = "iceberg",
visibility = [
"//src/v/iceberg:__subpackages__",
],
deps = [
":compatibility_types",
":datatypes",
":field_collecting_visitor",
"//src/v/base",
"@seastar",
],
)

redpanda_cc_library(
name = "compatibility",
srcs = [
Expand All @@ -131,11 +169,10 @@ redpanda_cc_library(
include_prefix = "iceberg",
visibility = ["//visibility:public"],
deps = [
":compatibility_types",
":compatibility_utils",
":datatypes",
"//src/v/base",
"@abseil-cpp//absl/container:btree",
"@fmt",
"@seastar",
],
)

Expand Down
1 change: 1 addition & 0 deletions src/v/iceberg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ v_cc_library(
action.cc
catalog.cc
compatibility.cc
compatibility_types.cc
datatypes.cc
datatypes_json.cc
filesystem_catalog.cc
Expand Down
Loading
Loading