Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errParseUnsupportedToken (1.43 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedNumber-256]
    	_ = x[ErrParseExpectedRightParenBuiltinFunctionCall-257]
    	_ = x[ErrParseExpectedTypeName-258]
    	_ = x[ErrParseExpectedWhenClause-259]
    	_ = x[ErrParseUnsupportedToken-260]
    	_ = x[ErrParseUnsupportedLiteralsGroupBy-261]
    	_ = x[ErrParseExpectedMember-262]
    	_ = x[ErrParseUnsupportedSelect-263]
    	_ = x[ErrParseUnsupportedCase-264]
    	_ = x[ErrParseUnsupportedCaseClause-265]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  2. 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 May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top