-
Notifications
You must be signed in to change notification settings - Fork 68
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
[v2.2.3 bug] - Duplicate output when @rid doesn't exists #218
Comments
Hi @dastoori This seems to be a regression in the SQL executor, I'm checking it Thanks Luigi |
Hi @dastoori I tried to replicate this problem on 2.2.12 but I could not manage to do it. Do you have a sample dataset to replicate it? Thanks Luigi |
This is my sample dataset (from my first comment): /* schema */
create class Team extends V;
create property Team.name String;
create class Player extends V;
create property Player.name String;
create class TeamHasPlayer extends E;
/* data */
create vertex Team set name = 'TeamA';
create vertex Player set name = 'Player1';
create vertex Player set name = 'Player2';
create edge TeamHasPlayer from (select from Team) to (select from Player); The query outputs has no problem in "OrientDB Studio" (2.2.7 and 2.2.12) or "OrientJS v2.2.2", but when i install |
Ok, got it. Thanks Luigi |
thanks opening this issue i've fixed it |
i'm waiting for travis then i will release 2.2.4 on NPM |
just released 2.2.4 |
I've recently updated
orientjs
to 2.2.3 and noticed that in some case it returns duplicate records.Example:
Following queries return two records and both of them are the same (notice the
@rid
field):another example:
When i add
@rid
toinclude()
, it returns the correct output:The above queries are works perfectly in v2.2.2
i'm using orientdb 2.2.12
The text was updated successfully, but these errors were encountered: