Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IncorrectSqlFunctionArgumentType (0.28 sec)

  1. internal/s3select/sql/errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errIncorrectSQLFunctionArgumentType(err error) *s3Error {
    	return &s3Error{
    		code:       "IncorrectSqlFunctionArgumentType",
    		message:    "Incorrect type of arguments in function call.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errLikeInvalidInputs(err error) *s3Error {
    	return &s3Error{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 2.6K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Description:    "Invalid use of * in SELECT list in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncorrectSQLFunctionArgumentType: {
    		Code:           "IncorrectSqlFunctionArgumentType",
    		Description:    "Incorrect type of arguments in function call in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrValueParseFailure: {
    		Code:           "ValueParseFailure",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
Back to top