You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 1 LIMIT 1
should return the first element
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 10 LIMIT 1
should return the 11° element
Actual behavior
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 1 LIMIT 1
returns the first element
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 10 LIMIT 1
returns the first element, too.
SKIP clause is not working at all
Steps to reproduce
MyEdge is an Edge enterting into MyVertex
#x:y in an existing @Rid for MyVertex
select expand(inE('MyEdge')) from MyVertex where @Rid="#86:0" order by @Rid SKIP 1 LIMIT 1
then:
select expand(inE('MyEdge')) from MyVertex where @Rid="#86:0" order by @Rid SKIP 10 LIMIT 1
The text was updated successfully, but these errors were encountered:
OrientDB Version: 2.2.33
Java Version: openjdk 1.8
OS: alpine 3.4
Expected behavior
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 1 LIMIT 1
should return the first element
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 10 LIMIT 1
should return the 11° element
Actual behavior
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 1 LIMIT 1
returns the first element
select expand(inE('MyEdge')) from MyVertex where @Rid="#x:y" order by @Rid SKIP 10 LIMIT 1
returns the first element, too.
SKIP clause is not working at all
Steps to reproduce
MyEdge is an Edge enterting into MyVertex
#x:y in an existing @Rid for MyVertex
select expand(inE('MyEdge')) from MyVertex where @Rid="#86:0" order by @Rid SKIP 1 LIMIT 1
then:
select expand(inE('MyEdge')) from MyVertex where @Rid="#86:0" order by @Rid SKIP 10 LIMIT 1
The text was updated successfully, but these errors were encountered: