Hi, That is because you use JNA which is not compiled to your platform. Could you use RC1 version it uses Unsafe by default and you probably should have more luck with this:-) To make 1.7.10 work on your platform you should compile JNA sources under AIX platform.
On Mon, Jan 5, 2015 at 12:36 PM, Nicolò Chieffo <[email protected]> wrote: > > My environment is AIX > using java IBM J9 VM (build 2.6, JRE 1.6.0 AIX ppc64-64 20120919_122629 > (from IBM WebSphere installation) > and orientdb-community-1.7.10 > > I'm trying to execute a query, using console.sh (also tried via web > browser, but same result). > In a facebook like scenario I'd like to get friends of people who like > south park > > select expand( in('like').both('friend') ) from Page where name = 'South > Park' > > this query works, and outputs some results, unfortunately the result > contains duplicates, so I added a query to remove duplicates > > select from ( select expand( in('like').both('friend') ) from Page where > name = 'South Park' ) group by @rid > > this query apparently hangs orientdb, and remains in a waiting status > (nothing in server.sh output). > The same query executed in ubuntu works without problems. > > Any help? > Thanks > > Nicolò > > -- > > --- > You received this message because you are subscribed to the Google Groups > "OrientDB" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- Best regards, Andrey Lomakin. -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
