Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseUnsupportedCase (0.37 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedWhenClause-260]
    	_ = x[ErrParseUnsupportedToken-261]
    	_ = x[ErrParseUnsupportedLiteralsGroupBy-262]
    	_ = x[ErrParseExpectedMember-263]
    	_ = x[ErrParseUnsupportedSelect-264]
    	_ = x[ErrParseUnsupportedCase-265]
    	_ = x[ErrParseUnsupportedCaseClause-266]
    	_ = x[ErrParseUnsupportedAlias-267]
    	_ = x[ErrParseUnsupportedSyntax-268]
    	_ = x[ErrParseUnknownOperator-269]
    	_ = x[ErrParseMissingIdentAfterAt-270]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "ParseExpectedMember",
    		message:    "The SQL expression contains an unsupported use of MEMBER.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseUnsupportedCase(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseUnsupportedCase",
    		message:    "The SQL expression contains an unsupported use of CASE.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    	ErrParseUnsupportedToken
    	ErrParseUnsupportedLiteralsGroupBy
    	ErrParseExpectedMember
    	ErrParseUnsupportedSelect
    	ErrParseUnsupportedCase
    	ErrParseUnsupportedCaseClause
    	ErrParseUnsupportedAlias
    	ErrParseUnsupportedSyntax
    	ErrParseUnknownOperator
    	ErrParseMissingIdentAfterAt
    	ErrParseUnexpectedOperator
    	ErrParseUnexpectedTerm
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top