Package com.googlecode.gql4j.GqlQuery

Examples of com.googlecode.gql4j.GqlQuery.From


  }
 
  @Test
  public void testOffset_1() {
    ParseResult actual = GqlQuery.parse("SELECT * from a limit 5 offset 10");
    ParseResult expected = new ParseResult().setSelect(new Select(false)).setFrom(new From("a"
        )).setLimit(new Limit(5)).setOffset(new Offset(10));
    assertEquals(expected, actual);
  }
View Full Code Here

TOP

Related Classes of com.googlecode.gql4j.GqlQuery.From

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.