Skip to content

Commit

Permalink
fix debug
Browse files Browse the repository at this point in the history
  • Loading branch information
akuzm committed Dec 5, 2024
1 parent fc4d4f4 commit 62f0610
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tsl/src/nodes/decompress_chunk/decompress_chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -895,12 +895,12 @@ ts_decompress_chunk_generate_paths(PlannerInfo *root, RelOptInfo *chunk_rel, con
chunk_rel->rows = new_row_estimate;

create_compressed_scan_paths(root, compressed_rel, compression_info, &sort_info);
fprintf(stderr,
"sortinfo: seqnum %d, pushdown %d, reverse %d, compressed pks:\n",
sort_info.needs_sequence_num,
sort_info.can_pushdown_sort,
sort_info.reverse);
my_print(sort_info.required_compressed_pathkeys);
// fprintf(stderr,
// "sortinfo: seqnum %d, pushdown %d, reverse %d, compressed pks:\n",
// sort_info.needs_sequence_num,
// sort_info.can_pushdown_sort,
// sort_info.reverse);
// my_print(sort_info.required_compressed_pathkeys);

/* compute parent relids of the chunk and use it to filter paths*/
Relids parent_relids = NULL;
Expand Down

0 comments on commit 62f0610

Please sign in to comment.