Skip to content

Commit

Permalink
fix:slash test (#2986)
Browse files Browse the repository at this point in the history
* fix:lpop and lpushx test

---------

Co-authored-by: chejinge <chejinge@360.cn>
  • Loading branch information
chejinge and brother-jin authored Dec 26, 2024
1 parent aa66371 commit 1e02b01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/pika.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,6 @@ jobs:
rm -rf ./deps
rm -rf ./buildtree
- name: Test
working-directory: ${{ github.workspace }}/build
run: ctest --rerun-failed --output-on-failure -C ${{ env.BUILD_TYPE }}

- name: Unit Test
working-directory: ${{ github.workspace }}
run: |
Expand Down
4 changes: 2 additions & 2 deletions src/storage/src/base_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ class StreamsDataFilter : public rocksdb::CompactionFilter {
bool* value_changed) const override {
ParsedStreamDataKey parsed_stream_data_key(key);
TRACE("==========================START==========================");
TRACE("[DataFilter], key: %s, id = %s, version = %d", parsed_base_data_key.key().ToString().c_str(),
parsed_base_data_key.data().ToString().c_str(), parsed_base_data_key.version());
TRACE("[DataFilter], key: %s, id = %s, version = %d", parsed_stream_data_key.key().ToString().c_str(),
parsed_stream_data_key.data().ToString().c_str(), parsed_stream_data_key.version());

if (parsed_stream_data_key.key().ToString() != cur_key_) {
cur_key_ = parsed_stream_data_key.key().ToString();
Expand Down

0 comments on commit 1e02b01

Please sign in to comment.