We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(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
The text was updated successfully, but these errors were encountered:
This type of problem is that the data results are incorrect. I will try to fix the problem myself.
Sorry, something went wrong.
Great Catch! please create a pr to this issue.
Fix checking input. (vesoft-inc#827)
7517e0d
laura-ding
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: