Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errUnsupportedSyntax (0.08 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidTableAlias-246]
    	_ = x[ErrMissingRequiredParameter-247]
    	_ = x[ErrObjectSerializationConflict-248]
    	_ = x[ErrUnsupportedSQLOperation-249]
    	_ = x[ErrUnsupportedSQLStructure-250]
    	_ = x[ErrUnsupportedSyntax-251]
    	_ = x[ErrUnsupportedRangeHeader-252]
    	_ = x[ErrLexerInvalidChar-253]
    	_ = x[ErrLexerInvalidOperator-254]
    	_ = x[ErrLexerInvalidLiteral-255]
    	_ = x[ErrLexerInvalidIONLiteral-256]
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "InvalidTableAlias",
    		message:    "The SQL expression contains an invalid table alias.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errUnsupportedSyntax(err error) *s3Error {
    	return &s3Error{
    		code:       "UnsupportedSyntax",
    		message:    "Encountered invalid syntax.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    	ErrInvalidTextEncoding
    	ErrInvalidDataSource
    	ErrInvalidTableAlias
    	ErrMissingRequiredParameter
    	ErrObjectSerializationConflict
    	ErrUnsupportedSQLOperation
    	ErrUnsupportedSQLStructure
    	ErrUnsupportedSyntax
    	ErrUnsupportedRangeHeader
    	ErrLexerInvalidChar
    	ErrLexerInvalidOperator
    	ErrLexerInvalidLiteral
    	ErrLexerInvalidIONLiteral
    	ErrParseExpectedDatePart
    	ErrParseExpectedKeyword
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (3)
Back to top