Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for errParseExpectedNumber (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "ParseExpected2TokenTypes",
    		message:    "Did not find the expected token in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedNumber(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedNumber",
    		message:    "Did not find the expected number in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Click Count (0)
  2. cmd/api-errors.go

    	ErrLexerInvalidOperator
    	ErrLexerInvalidLiteral
    	ErrLexerInvalidIONLiteral
    	ErrParseExpectedDatePart
    	ErrParseExpectedKeyword
    	ErrParseExpectedTokenType
    	ErrParseExpected2TokenTypes
    	ErrParseExpectedNumber
    	ErrParseExpectedRightParenBuiltinFunctionCall
    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    	ErrParseUnsupportedToken
    	ErrParseUnsupportedLiteralsGroupBy
    	ErrParseExpectedMember
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 93K bytes
    - Click Count (3)
Back to Top