fastmodel-transform/fastmodel-transform-adbpg/src/main/java/com/aliyun/fastmodel/transform/adbpg/parser/AdbPostgreSQLAstBuilder.java [655:663]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Node visitAexprconst(AexprconstContext ctx) {
        if (ctx.FALSE_P() != null) {
            return new BooleanLiteral("FALSE");
        }
        if (ctx.TRUE_P() != null) {
            return new BooleanLiteral("TRUE");
        }
        return super.visitAexprconst(ctx);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fastmodel-transform/fastmodel-transform-hologres/src/main/java/com/aliyun/fastmodel/transform/hologres/parser/HologresAstBuilder.java [539:547]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Node visitAexprconst(AexprconstContext ctx) {
        if (ctx.FALSE_P() != null) {
            return new BooleanLiteral("FALSE");
        }
        if (ctx.TRUE_P() != null) {
            return new BooleanLiteral("TRUE");
        }
        return super.visitAexprconst(ctx);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



