Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errParseExpectedIdentForAt (0.1 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedIdentForAlias-289]
    	_ = x[ErrParseUnsupportedCallWithStar-290]
    	_ = x[ErrParseNonUnaryAggregateFunctionCall-291]
    	_ = x[ErrParseMalformedJoin-292]
    	_ = x[ErrParseExpectedIdentForAt-293]
    	_ = x[ErrParseAsteriskIsNotAloneInSelectList-294]
    	_ = x[ErrParseCannotMixSqbAndWildcardInSelectList-295]
    	_ = x[ErrParseInvalidContextForWildcardInSelectList-296]
    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:       "ParseMalformedJoin",
    		message:    "JOIN is not supported in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedIdentForAt(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedIdentForAt",
    		message:    "Did not find the expected identifier for AT name in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top