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

result wrong #827

Closed
moneytoyang opened this issue Aug 21, 2019 · 2 comments · Fixed by #1181
Closed

result wrong #827

moneytoyang opened this issue Aug 21, 2019 · 2 comments · Fixed by #1181
Assignees
Labels
priority/med-pri Priority: medium

Comments

@moneytoyang
Copy link
Contributor

moneytoyang commented Aug 21, 2019

(user@127.0.0.1) [myspace]> create tag  player(name string, age int);
Execution succeeded (Time spent: 2758/3791 us)

(user@127.0.0.1) [myspace]> show tags;
==========
| Name   |
==========
| player |
----------
Got 1 rows (Time spent: 2290/3430 us)

(user@127.0.0.1) [myspace]> insert vertex player(name, age) values 1001:("yangzi", 9223372036854775807+1);
Execution succeeded (Time spent: 3575/4700 us)

########################################
(user@127.0.0.1) [myspace]>  fetch prop on player 1001;
======================================
| player.name | player.age           |
======================================
| yangzi      | -9223372036854775808 |
--------------------------------------
Got 1 rows (Time spent: 2232/2959 us)

(user@127.0.0.1) [myspace]> insert vertex player(name, age) values 1002:("yangzi", 1-9223372036854775807-3);
Execution succeeded (Time spent: 2956/4309 us)

############################################
(user@127.0.0.1) [myspace]>  fetch prop on player 1002;
=====================================
| player.name | player.age          |
=====================================
| yangzi      | 9223372036854775807 |
-------------------------------------
Got 1 rows (Time spent: 1789/2455 us
@moneytoyang
Copy link
Contributor Author

This type of problem is that the data results are incorrect.
I will try to fix the problem myself.

@whitewum whitewum added the priority/med-pri Priority: medium label Aug 23, 2019
@whitewum
Copy link
Contributor

Great Catch! please create a pr to this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority/med-pri Priority: medium
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants