Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pruneProperties error #5491

Closed
nevermore3 opened this issue Apr 13, 2023 · 0 comments · Fixed by #5494
Closed

pruneProperties error #5491

nevermore3 opened this issue Apr 13, 2023 · 0 comments · Fixed by #5494
Assignees
Labels
affects/none PR/issue: this bug affects none version. process/fixed Process of bug severity/none Severity of bug type/bug Type: something is unexpected
Milestone

Comments

@nevermore3
Copy link
Contributor

Please check the FAQ documentation before raising an issue

Describe the bug (required)


(root@nebula) [nba]> MATCH (a)-[b:like]->(c)-[:serve]->(d:team) where id(a) == "Tim Duncan" WITH  collect(CASE c.player.name   WHEN null THEN null  ELSE [c.player.name, b.likeness, d.team.name]  END ) AS res RETURN res
+------------------------------------------------------------------------------------------------+
| res                                                                                            |
+------------------------------------------------------------------------------------------------+
| [["Tony Parker", 95, "Hornets"], ["Tony Parker", 95, "Spurs"], ["Manu Ginobili", 95, "Spurs"]] |
+------------------------------------------------------------------------------------------------+
Got 1 rows (time spent 18518/19227 us)

Thu, 13 Apr 2023 13:51:39 CST

(root@nebula) [nba]> MATCH (a)-[b:like]->(c)-[:serve]->(d:team) where id(a) == "Tim Duncan" WITH  collect(CASE c.player.name   WHEN null THEN null ELSE [c.player.name, b.likeness, d.team.name]  END) AS res, a RETURN res
+-------------------------------------------------------------------------------------------------+
| res                                                                                             |
+-------------------------------------------------------------------------------------------------+
| [["Tony Parker", 95, __NULL__], ["Tony Parker", 95, __NULL__], ["Manu Ginobili", 95, __NULL__]] |
+-------------------------------------------------------------------------------------------------+

Your Environments (required)

  • OS: uname -a
  • Compiler: g++ --version or clang++ --version
  • CPU: lscpu
  • Commit id (e.g. a3ffc7d8)

How To Reproduce(required)

Steps to reproduce the behavior:

  1. Step 1
  2. Step 2
  3. Step 3

Expected behavior

Additional context

@nevermore3 nevermore3 added the type/bug Type: something is unexpected label Apr 13, 2023
@nevermore3 nevermore3 self-assigned this Apr 13, 2023
@github-actions github-actions bot added affects/none PR/issue: this bug affects none version. severity/none Severity of bug labels Apr 13, 2023
@Sophie-Xie Sophie-Xie added this to the v3.5.0 milestone Apr 13, 2023
@nevermore3 nevermore3 mentioned this issue Apr 13, 2023
11 tasks
@github-actions github-actions bot added the process/fixed Process of bug label Apr 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
affects/none PR/issue: this bug affects none version. process/fixed Process of bug severity/none Severity of bug type/bug Type: something is unexpected
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants