-
Notifications
You must be signed in to change notification settings - Fork 891
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor compression file organization
Move compression dml code into separate file, moves code dealing with ScanKey into separate file and move compression algorithms code into dedicated subdirectory.
- Loading branch information
Showing
28 changed files
with
1,858 additions
and
1,794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
set(SOURCES | ||
${CMAKE_CURRENT_SOURCE_DIR}/api.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/array.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/compression.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/compression_dml.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/compression_scankey.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/compression_storage.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/create.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/datum_serialize.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/deltadelta.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/dictionary.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/gorilla.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/segment_meta.c) | ||
target_sources(${TSL_LIBRARY_NAME} PRIVATE ${SOURCES}) | ||
|
||
add_subdirectory(algorithms) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
set(SOURCES | ||
${CMAKE_CURRENT_SOURCE_DIR}/array.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/datum_serialize.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/deltadelta.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/dictionary.c | ||
${CMAKE_CURRENT_SOURCE_DIR}/gorilla.c) | ||
target_sources(${TSL_LIBRARY_NAME} PRIVATE ${SOURCES}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.