Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for errParseSelectMissingFrom (0.11 seconds)

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

  1. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "ParseEmptySelect",
    		message:    "The SQL expression contains an empty SELECT.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseSelectMissingFrom(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseSelectMissingFrom",
    		message:    "The SQL expression contains a missing FROM after SELECT list.",
    		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

    	ErrParseExpectedLeftParenValueConstructor
    	ErrParseExpectedLeftParenBuiltinFunctionCall
    	ErrParseExpectedArgumentDelimiter
    	ErrParseCastArity
    	ErrParseInvalidTypeParam
    	ErrParseEmptySelect
    	ErrParseSelectMissingFrom
    	ErrParseExpectedIdentForGroupName
    	ErrParseExpectedIdentForAlias
    	ErrParseUnsupportedCallWithStar
    	ErrParseNonUnaryAggregateFunctionCall
    	ErrParseMalformedJoin
    	ErrParseExpectedIdentForAt
    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