Package com.alibaba.druid.bvt.bug

Source Code of com.alibaba.druid.bvt.bug.Issue_685

package com.alibaba.druid.bvt.bug;

import junit.framework.TestCase;

import com.alibaba.druid.sql.ast.SQLStatement;
import com.alibaba.druid.sql.dialect.oracle.parser.OracleStatementParser;

public class Issue_685 extends TestCase {

    public void test_for_issue() throws Exception {
        OracleStatementParser parser = new OracleStatementParser("select upper(*) from aa order by now()");
        SQLStatement st = parser.parseStatement();
        st.toString();
    }
}
TOP

Related Classes of com.alibaba.druid.bvt.bug.Issue_685

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.