src/main/java/com/amazon/redshift/jdbc/EscapedFunctions.java [412:418]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static String sqlcurdate(List<?> parsedArgs) throws SQLException {
    if (!parsedArgs.isEmpty()) {
      throw new RedshiftException(GT.tr("{0} function doesn''t take any argument.", "curdate"),
          RedshiftState.SYNTAX_ERROR);
    }
    return "current_date";
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazon/redshift/jdbc/EscapedFunctions.java [427:433]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static String sqlcurtime(List<?> parsedArgs) throws SQLException {
    if (!parsedArgs.isEmpty()) {
      throw new RedshiftException(GT.tr("{0} function doesn''t take any argument.", "curtime"),
          RedshiftState.SYNTAX_ERROR);
    }
    return "current_time";
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



