Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseCannotMixSqbAndWildcardInSelectList (0.78 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseNonUnaryAggregateFunctionCall-287]
    	_ = x[ErrParseMalformedJoin-288]
    	_ = x[ErrParseExpectedIdentForAt-289]
    	_ = x[ErrParseAsteriskIsNotAloneInSelectList-290]
    	_ = x[ErrParseCannotMixSqbAndWildcardInSelectList-291]
    	_ = x[ErrParseInvalidContextForWildcardInSelectList-292]
    	_ = x[ErrIncorrectSQLFunctionArgumentType-293]
    	_ = x[ErrValueParseFailure-294]
    	_ = x[ErrEvaluatorInvalidArguments-295]
    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

    		code:       "ParseExpectedIdentForAt",
    		message:    "Did not find the expected identifier for AT name in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseCannotMixSqbAndWildcardInSelectList(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseCannotMixSqbAndWildcardInSelectList",
    		message:    "Cannot mix [] and * in the same expression in a SELECT list in SQL expression.",
    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

    	ErrParseExpectedIdentForAlias
    	ErrParseUnsupportedCallWithStar
    	ErrParseNonUnaryAggregateFunctionCall
    	ErrParseMalformedJoin
    	ErrParseExpectedIdentForAt
    	ErrParseAsteriskIsNotAloneInSelectList
    	ErrParseCannotMixSqbAndWildcardInSelectList
    	ErrParseInvalidContextForWildcardInSelectList
    	ErrIncorrectSQLFunctionArgumentType
    	ErrValueParseFailure
    	ErrEvaluatorInvalidArguments
    	ErrIntegerOverflow
    	ErrLikeInvalidInputs
    	ErrCastFailed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top