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

Same statement with different result formats in 2.5.1 and 2.6.0 #3212

Closed
randomJoe211 opened this issue Oct 26, 2021 · 2 comments
Closed

Same statement with different result formats in 2.5.1 and 2.6.0 #3212

randomJoe211 opened this issue Oct 26, 2021 · 2 comments
Labels
incompatible PR: incompatible with the recently released version type/bug Type: something is unexpected

Comments

@randomJoe211
Copy link
Contributor

randomJoe211 commented Oct 26, 2021

Nebula Graph versions: 2.5.1 and 2.6.0
Dataset: https://docs.nebula-graph.io/2.0/basketballplayer-2.X.ngql

2.5.1:

(root@nebula) [basketballplayer]> MATCH p = (n:player{name:"Tim Duncan"})-[:follow]->(m) \
                               ->         RETURN [n IN nodes(p) | n.age + 100] AS r;
+------------+
| r          |
+------------+
| [142, 136] |
+------------+
| [142, 141] |
+------------+
Got 2 rows (time spent 2621/3120 us)

2.6.0:

(root@nebula) [basketballplayer]> MATCH p = (n:player{name:"Tim Duncan"})-[:follow]->(m) \
                               ->         RETURN [n IN nodes(p) | n.age + 100] AS r;
+------------+
| r          |
+------------+
| [142, 136] |
| [142, 141] |
+------------+
Got 2 rows (time spent 2784/3391 us)
@randomJoe211 randomJoe211 added type/bug Type: something is unexpected incompatible PR: incompatible with the recently released version labels Oct 26, 2021
@nevermore3
Copy link
Contributor

this is not bug, the 2.6 console removes the --- between data lines

@HarrisChu
Copy link
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
incompatible PR: incompatible with the recently released version type/bug Type: something is unexpected
Projects
None yet
Development

No branches or pull requests

3 participants