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
16 changes: 12 additions & 4 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,15 @@ jobs:
ccache --set-config=cache_dir=D:\c
ccache --set-config=temporary_dir=D:\t

- name: Cache ccache directory (Windows)
- name: Restore ccache directory (Windows)
if: matrix.platform == 'windows'
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: D:\c
key: minimal-test-${{ runner.os }}-${{ github.ref }}
key: minimal-test-${{ runner.os }}-${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
minimal-test-${{ runner.os }}-refs/heads/main
minimal-test-${{ runner.os }}-${{ github.ref }}-
minimal-test-${{ runner.os }}-refs/heads/main-
minimal-test-${{ runner.os }}-

- name: Enable long paths (Windows)
Expand Down Expand Up @@ -245,6 +246,13 @@ jobs:
uv pip install pytest pexpect
make shell-test test

- name: Save ccache directory (Windows)
if: always() && matrix.platform == 'windows'
uses: actions/cache/save@v4
with:
path: D:\c
key: minimal-test-${{ runner.os }}-${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}

minimal-linux-extension-test:
name: minimal linux extension test
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion test/api/arrow_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ TEST_F(ArrowTest, queryAsArrowDirectCSRRowIDProjection) {
}

TEST_F(ArrowTest, queryAsArrowDirectCSRRowIDProjectionKeepsCSRMetadataWithFourThreads) {
auto query = "MATCH (a:person)-[b:knows]->(c:person) RETURN a.rowid, b.rowid, c.rowid";
auto query = "MATCH (a:person)-[b:knows]->(c:person) RETURN a.rowid, b.rowid, c.rowid "
"ORDER BY a.rowid, b.rowid, c.rowid";
conn->setMaxNumThreadForExec(4);
auto result = conn->queryAsArrow(query, 8);
auto* arrowResult = dynamic_cast<ArrowQueryResult*>(result.get());
Expand Down
Loading