Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseUnsupportedToken (0.24 sec)

  1. internal/s3select/unused-errors.go

    		code:       "ParseExpectedWhenClause",
    		message:    "Did not find the expected WHEN clause in the SQL expression. CASE is not supported.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseUnsupportedToken(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseUnsupportedToken",
    		message:    "The SQL expression contains an unsupported token.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedNumber-255]
    	_ = x[ErrParseExpectedRightParenBuiltinFunctionCall-256]
    	_ = x[ErrParseExpectedTypeName-257]
    	_ = x[ErrParseExpectedWhenClause-258]
    	_ = x[ErrParseUnsupportedToken-259]
    	_ = x[ErrParseUnsupportedLiteralsGroupBy-260]
    	_ = x[ErrParseExpectedMember-261]
    	_ = x[ErrParseUnsupportedSelect-262]
    	_ = x[ErrParseUnsupportedCase-263]
    	_ = x[ErrParseUnsupportedCaseClause-264]
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 06:44:30 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	ErrParseExpectedTokenType
    	ErrParseExpected2TokenTypes
    	ErrParseExpectedNumber
    	ErrParseExpectedRightParenBuiltinFunctionCall
    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    	ErrParseUnsupportedToken
    	ErrParseUnsupportedLiteralsGroupBy
    	ErrParseExpectedMember
    	ErrParseUnsupportedSelect
    	ErrParseUnsupportedCase
    	ErrParseUnsupportedCaseClause
    	ErrParseUnsupportedAlias
    	ErrParseUnsupportedSyntax
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 05:26:02 GMT 2024
    - 90.2K bytes
    - Viewed (6)
Back to top