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

function coalesce incompatible with cypher #2643

Closed
czpmango opened this issue Jun 29, 2021 · 2 comments
Closed

function coalesce incompatible with cypher #2643

czpmango opened this issue Jun 29, 2021 · 2 comments
Labels
type/feature req Type: feature request

Comments

@czpmango
Copy link
Contributor

**Describe the bug **
function coalesce incompatible with cypher

How To Reproduce

(czp@nebula) [nba]> with ["123",null,"abc"] as ids return coalesce([ids[1],ids[2]])
+---------------------------+
| coalesce([ids[1],ids[2]]) |
+---------------------------+
| "abc"                     |
+---------------------------+

Expected behavior

neo4j@neo4j>  with ["123",null,"abc"] as ids return coalesce(ids[1],ids[2]);
+-------------------------+
| coalesce(ids[1],ids[2]) |
+-------------------------+
| "abc"                   |
+-------------------------+

@czpmango
Copy link
Contributor Author

@CPWstatic CPWstatic transferred this issue from vesoft-inc/nebula-graph Aug 27, 2021
@CPWstatic CPWstatic added the type/feature req Type: feature request label Aug 27, 2021
@czpmango
Copy link
Contributor Author

czpmango commented Jan 9, 2023

Already fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/feature req Type: feature request
Projects
None yet
Development

No branches or pull requests

2 participants