Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/parquet-example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ include_directories(../../third_party/catch)
include_directories(../../third_party/tpce-tool/include)
include_directories(../../third_party/sqlite/include)
include_directories(../../src/include)
#include_directories(../../../pixels-common/include)

add_executable(parquet-example main.cpp)
target_link_libraries(parquet-example duckdb)
2 changes: 1 addition & 1 deletion examples/pixels-example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include_directories(../../third_party/catch)
include_directories(../../third_party/tpce-tool/include)
include_directories(../../third_party/sqlite/include)
include_directories(../../src/include)
include_directories(../../../pixels-common/include)
include_directories($ENV{PIXELS_SRC}/cpp/pixels-common/include)

add_executable(pixels-example main.cpp)
target_link_libraries(pixels-example duckdb)
2 changes: 1 addition & 1 deletion extension/extension_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
duckdb_extension_load(parquet)
duckdb_extension_load(tpch)
duckdb_extension_load(pixels
SOURCE_DIR ../../
SOURCE_DIR $ENV{PIXELS_SRC}
)

# The Linux allocator has issues so we use jemalloc, but only on x86 because page sizes are fixed at 4KB.
Expand Down
2 changes: 1 addition & 1 deletion scripts/parquet-multidir-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The script copies all files in ${input}/${table}/${suffix}/ directory to ${output}/${table}/${suffix}/
# input, output and suffix should be designated, while table is detected automatically.
# For example, we execute the following script:
# cd pixels-duckdb
# cd pixels-duckdb/duckdb
# python scripts/parquet-multidir-generator.py -i /data/tpch-300 -o /data1/tpch-300-partition1 /data2/tpch-300-partition2
# The input path layout is:
# input:
Expand Down
2 changes: 1 addition & 1 deletion scripts/pixels-multidir-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The script copies all files in ${input}/${table}/${suffix}/ directory to ${output}/${table}/${suffix}/
# input, output and suffix should be designated, while table is detected automatically.
# For example, we execute the following script:
# cd pixels-duckdb
# cd pixels-duckdb/duckdb
# python scripts/pixels-multidir-generator.py -i /data/tpch-300 -o /data1/tpch-300-partition1 /data2/tpch-300-partition2
# The input path layout is:
# input:
Expand Down