Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/apierrorcode_string.go

    	_ = x[ErrLexerInvalidLiteral-251]
    	_ = x[ErrLexerInvalidIONLiteral-252]
    	_ = x[ErrParseExpectedDatePart-253]
    	_ = x[ErrParseExpectedKeyword-254]
    	_ = x[ErrParseExpectedTokenType-255]
    	_ = x[ErrParseExpected2TokenTypes-256]
    	_ = x[ErrParseExpectedNumber-257]
    	_ = x[ErrParseExpectedRightParenBuiltinFunctionCall-258]
    	_ = x[ErrParseExpectedTypeName-259]
    	_ = x[ErrParseExpectedWhenClause-260]
    	_ = x[ErrParseUnsupportedToken-261]
    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:       "ParseExpectedTokenType",
    		message:    "Did not find the expected token in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpected2TokenTypes(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpected2TokenTypes",
    		message:    "Did not find the expected token 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

    	ErrLexerInvalidChar
    	ErrLexerInvalidOperator
    	ErrLexerInvalidLiteral
    	ErrLexerInvalidIONLiteral
    	ErrParseExpectedDatePart
    	ErrParseExpectedKeyword
    	ErrParseExpectedTokenType
    	ErrParseExpected2TokenTypes
    	ErrParseExpectedNumber
    	ErrParseExpectedRightParenBuiltinFunctionCall
    	ErrParseExpectedTypeName
    	ErrParseExpectedWhenClause
    	ErrParseUnsupportedToken
    	ErrParseUnsupportedLiteralsGroupBy
    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