Uploaded image for project: 'Kylin'
  1. Kylin
  2. KYLIN-2815

Empty results with prepareStatement but OK with KylinStatement

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Duplicate
    • v2.1.0
    • v2.2.0
    • Driver - JDBC

    Description

      Actually, my prepareStatement queries works well with kylin version v2.0.
      After I upgrade kylin to version v2.1, all queries have no results return,

      Then I write test:

      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://IP:7070/project_name", info);
      PreparedStatement pst = conn.prepareStatement("select XX where XX = ? ")
      pst.setInt(1, 1);
      ResultSet resultSet = pst.executeQuery();
      

      Return no results, and after that I change the query to statement

      Statement state = conn.createStatement();
      ResultSet resultSet = state.executeQuery("select XX where XX = 1")
      

      Finally, I got return values.
      I have no idea whether it is a bug or I have done something wrong with upgrade?
      As I have removed HBase tables “kylin_metadata_user” and “kylin_metadata_acl", I think
      I can't come back to version v2.0 any more

      I also try changed dependency kylin-jdbc to version 2.1.0 but help nothing.

      Attachments

        Issue Links

          Activity

            People

              wormholer Wang Cheng
              youcheng.zhang youcheng.zhang
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: