Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseMissingIdentAfterAt (0.1 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseUnsupportedCase-269]
    	_ = x[ErrParseUnsupportedCaseClause-270]
    	_ = x[ErrParseUnsupportedAlias-271]
    	_ = x[ErrParseUnsupportedSyntax-272]
    	_ = x[ErrParseUnknownOperator-273]
    	_ = x[ErrParseMissingIdentAfterAt-274]
    	_ = x[ErrParseUnexpectedOperator-275]
    	_ = x[ErrParseUnexpectedTerm-276]
    	_ = x[ErrParseUnexpectedToken-277]
    	_ = x[ErrParseUnexpectedKeyword-278]
    	_ = x[ErrParseExpectedExpression-279]
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "ParseInvalidPathComponent",
    		message:    "The SQL expression contains an invalid path component.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseMissingIdentAfterAt(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseMissingIdentAfterAt",
    		message:    "Did not find the expected identifier after the @ symbol in the SQL expression.",
    		statusCode: 400,
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	ErrParseExpectedMember
    	ErrParseUnsupportedSelect
    	ErrParseUnsupportedCase
    	ErrParseUnsupportedCaseClause
    	ErrParseUnsupportedAlias
    	ErrParseUnsupportedSyntax
    	ErrParseUnknownOperator
    	ErrParseMissingIdentAfterAt
    	ErrParseUnexpectedOperator
    	ErrParseUnexpectedTerm
    	ErrParseUnexpectedToken
    	ErrParseUnexpectedKeyword
    	ErrParseExpectedExpression
    	ErrParseExpectedLeftParenAfterCast
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (3)
Back to top