summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLevi Tamasi <ltamasi@fb.com>2022-06-03 20:54:48 -0700
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2022-06-03 20:54:48 -0700
commite9c74bc474f3ef932a55f68e0bf1915b66c2e0f7 (patch)
tree36b0c4436c76cd4046dee2201f68442182ea7d5d /Makefile
parent3e02c6e05a6c45774574e2634d6eeec9df1aed7c (diff)
Add wide column serialization primitives (#9915)
Summary: The patch adds some low-level logic that can be used to serialize/deserialize a sorted vector of wide columns to/from a simple binary searchable string representation. Currently, there is no user-facing API; this will be implemented in subsequent stages. Pull Request resolved: https://github.com/facebook/rocksdb/pull/9915 Test Plan: `make check` Reviewed By: siying Differential Revision: D35978076 Pulled By: ltamasi fbshipit-source-id: 33f5f6628ec3bcd8c8beab363b1978ac047a8788
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 20c78edba..6e288c0d8 100644
--- a/Makefile
+++ b/Makefile
@@ -1902,6 +1902,10 @@ db_basic_bench: $(OBJ_DIR)/microbench/db_basic_bench.o $(LIBRARY)
cache_reservation_manager_test: $(OBJ_DIR)/cache/cache_reservation_manager_test.o $(TEST_LIBRARY) $(LIBRARY)
$(AM_LINK)
+
+wide_column_serialization_test: $(OBJ_DIR)/db/wide/wide_column_serialization_test.o $(TEST_LIBRARY) $(LIBRARY)
+ $(AM_LINK)
+
#-------------------------------------------------
# make install related stuff
PREFIX ?= /usr/local