holo-e2e-performance-tool/src/main/java/com/alibaba/hologres/performace/client/GetTest.java [52:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Properties props = new Properties();
    PGProperty.USER.set(props, config.getUsername());
    PGProperty.PASSWORD.set(props, config.getPassword());
    PGProperty.APPLICATION_NAME.set(props, config.getAppName());
    LOG.info("props : {}", props);
    String jdbcUrl = config.getJdbcUrl();
    try (Connection conn = DriverManager.getConnection(jdbcUrl, props)) {
      if (conf.vacuumTableBeforeRun) {
        SqlUtil.vaccumTable(conn, conf.tableName);
      }
      reporter.start(ConnectionUtil.getHoloVersion(conn));
      TableSchema schema =  ConnectionUtil.getTableSchema(conn, TableName.valueOf(conf.tableName));
      if (schema == null) {
        throw new Exception("table not found");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



holo-e2e-performance-tool/src/main/java/com/alibaba/hologres/performace/client/ScanTest.java [53:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Properties props = new Properties();
    PGProperty.USER.set(props, config.getUsername());
    PGProperty.PASSWORD.set(props, config.getPassword());
    PGProperty.APPLICATION_NAME.set(props, config.getAppName());
    LOG.info("props : {}", props);
    String jdbcUrl = config.getJdbcUrl();
    try (Connection conn = DriverManager.getConnection(jdbcUrl, props)) {
      if (conf.vacuumTableBeforeRun) {
        SqlUtil.vaccumTable(conn, conf.tableName);
      }
      reporter.start(ConnectionUtil.getHoloVersion(conn));
      TableSchema schema = ConnectionUtil.getTableSchema(conn, TableName.valueOf(conf.tableName));
      if (schema == null) {
        throw new Exception("table not found");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



