Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CastFailed (0.15 sec)

  1. internal/s3select/unused-errors.go

    //
    //	CAST() related errors.
    //
    // ////////////////////////////////////////////////////////////////////////////////////
    func errCastFailed(err error) *s3Error {
    	return &s3Error{
    		code:       "CastFailed",
    		message:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidCast(err error) *s3Error {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Code:           "LikeInvalidInputs",
    		Description:    "Invalid argument given to the LIKE clause in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrCastFailed: {
    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (7)
Back to top