Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseExpectedTypeName (0.28 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrParseExpectedTokenType-255]
    	_ = x[ErrParseExpected2TokenTypes-256]
    	_ = x[ErrParseExpectedNumber-257]
    	_ = x[ErrParseExpectedRightParenBuiltinFunctionCall-258]
    	_ = x[ErrParseExpectedTypeName-259]
    	_ = x[ErrParseExpectedWhenClause-260]
    	_ = x[ErrParseUnsupportedToken-261]
    	_ = x[ErrParseUnsupportedLiteralsGroupBy-262]
    	_ = x[ErrParseExpectedMember-263]
    	_ = x[ErrParseUnsupportedSelect-264]
    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:       "ParseExpectedRightParenBuiltinFunctionCall",
    		message:    "Did not find the expected right parenthesis character in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedTypeName(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedTypeName",
    		message:    "Did not find the expected type name in the SQL expression.",
    		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

    	ErrParseExpectedDatePart
    	ErrParseExpectedKeyword
    	ErrParseExpectedTokenType
    	ErrParseExpected2TokenTypes
    	ErrParseExpectedNumber
    	ErrParseExpectedRightParenBuiltinFunctionCall
    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    	ErrParseUnsupportedToken
    	ErrParseUnsupportedLiteralsGroupBy
    	ErrParseExpectedMember
    	ErrParseUnsupportedSelect
    	ErrParseUnsupportedCase
    	ErrParseUnsupportedCaseClause
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top