Examples of rewriteFromItem()


Examples of org.apache.metamodel.jdbc.dialects.PostgresqlQueryRewriter.rewriteFromItem()

  public void testRewriteFromItem() throws Exception {
    PostgresqlQueryRewriter rewriter = new PostgresqlQueryRewriter(null);

    assertEquals("\"public\".foo",
        rewriter.rewriteFromItem(new FromItem(new MutableTable("foo").setSchema(new MutableSchema("public")))));
  }

  public void testGetColumnType() throws Exception {
    PostgresqlQueryRewriter rewriter = new PostgresqlQueryRewriter(null);
    assertEquals(ColumnType.BOOLEAN, rewriter.getColumnType(Types.BIT, "bool", -1));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.