Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseUnsupportedLiteralsGroupBy (0.97 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedRightParenBuiltinFunctionCall-258]
    	_ = x[ErrParseExpectedTypeName-259]
    	_ = x[ErrParseExpectedWhenClause-260]
    	_ = x[ErrParseUnsupportedToken-261]
    	_ = x[ErrParseUnsupportedLiteralsGroupBy-262]
    	_ = x[ErrParseExpectedMember-263]
    	_ = x[ErrParseUnsupportedSelect-264]
    	_ = x[ErrParseUnsupportedCase-265]
    	_ = x[ErrParseUnsupportedCaseClause-266]
    	_ = x[ErrParseUnsupportedAlias-267]
    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

    	return &s3Error{
    		code:       "ParseUnsupportedToken",
    		message:    "The SQL expression contains an unsupported token.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseUnsupportedLiteralsGroupBy(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseUnsupportedLiteralsGroupBy",
    		message:    "The SQL expression contains an unsupported use of GROUP BY.",
    		statusCode: 400,
    		cause:      err,
    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

    	ErrParseExpected2TokenTypes
    	ErrParseExpectedNumber
    	ErrParseExpectedRightParenBuiltinFunctionCall
    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    	ErrParseUnsupportedToken
    	ErrParseUnsupportedLiteralsGroupBy
    	ErrParseExpectedMember
    	ErrParseUnsupportedSelect
    	ErrParseUnsupportedCase
    	ErrParseUnsupportedCaseClause
    	ErrParseUnsupportedAlias
    	ErrParseUnsupportedSyntax
    	ErrParseUnknownOperator
    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