the jdbc code like:
Driver driver = (Driver) 
Class.forName("org.apache.kylin.jdbc.Driver").newInstance();
        Properties info = new Properties();
        info.put("user", "ADMIN");
        info.put("password", "KYLIN");
        Connection conn = 
driver.connect("jdbc:kylin://localhost:7070/kylin_project_name", info);
        Statement state = conn.createStatement();
        ResultSet resultSet = state.executeQuery("select * from test_table");
        while (resultSet.next()) {.....}the same query, jdbc returns 5 rows, 
but in kylin's own query tab, after click showall button,it returns 15 rows, 
how to make jdbc return all?



中国移动广东有限公司 网管中心 梁猛
[email protected]

Reply via email to