Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errParseExpectedKeyword (0.37 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrLexerInvalidChar-248]
    	_ = x[ErrLexerInvalidOperator-249]
    	_ = x[ErrLexerInvalidLiteral-250]
    	_ = x[ErrLexerInvalidIONLiteral-251]
    	_ = x[ErrParseExpectedDatePart-252]
    	_ = x[ErrParseExpectedKeyword-253]
    	_ = x[ErrParseExpectedTokenType-254]
    	_ = x[ErrParseExpected2TokenTypes-255]
    	_ = x[ErrParseExpectedNumber-256]
    	_ = x[ErrParseExpectedRightParenBuiltinFunctionCall-257]
    	_ = x[ErrParseExpectedTypeName-258]
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "ParseExpectedDatePart",
    		message:    "Did not find the expected date part in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedKeyword(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedKeyword",
    		message:    "Did not find the expected keyword in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	ErrUnsupportedSyntax
    	ErrUnsupportedRangeHeader
    	ErrLexerInvalidChar
    	ErrLexerInvalidOperator
    	ErrLexerInvalidLiteral
    	ErrLexerInvalidIONLiteral
    	ErrParseExpectedDatePart
    	ErrParseExpectedKeyword
    	ErrParseExpectedTokenType
    	ErrParseExpected2TokenTypes
    	ErrParseExpectedNumber
    	ErrParseExpectedRightParenBuiltinFunctionCall
    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
Back to top