Skip to content

Commit

Permalink
ci: Add test cases for Interacitve runtime (#4466)
Browse files Browse the repository at this point in the history
As titled.

It seems that `MATCH(n)-[*1..4]-() RETURN count(n), n;` could be
correctly executed on `graph_algo`, maybe this #4463 issue is due to
other reasons.
  • Loading branch information
zhanglei1949 authored Feb 7, 2025
1 parent 383a1e0 commit 04ebffa
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,14 @@ def test_complex_query(interactive_session, neo4j_session, create_graph_algo_gra
ping_thread.join()
ping_thread_2.join()

result = neo4j_session.run("MATCH(n)-[*1..4]-() RETURN count(n),n;")
records = result.fetch(200)
assert len(records) == 184

result = neo4j_session.run("MATCH(n)-[e*1..4]-() RETURN count(n),n;")
records = result.fetch(200)
assert len(records) == 184


def test_x_csr_params(
interactive_session, neo4j_session, create_graph_algo_graph_with_x_csr_params
Expand Down

0 comments on commit 04ebffa

Please sign in to comment.