Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidTableAlias-242]
    	_ = x[ErrMissingRequiredParameter-243]
    	_ = x[ErrObjectSerializationConflict-244]
    	_ = x[ErrUnsupportedSQLOperation-245]
    	_ = x[ErrUnsupportedSQLStructure-246]
    	_ = x[ErrUnsupportedSyntax-247]
    	_ = x[ErrUnsupportedRangeHeader-248]
    	_ = x[ErrLexerInvalidChar-249]
    	_ = x[ErrLexerInvalidOperator-250]
    	_ = x[ErrLexerInvalidLiteral-251]
    	_ = x[ErrLexerInvalidIONLiteral-252]
    Registered: Sun Nov 03 19:28:11 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:       "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 Nov 03 19:28:11 UTC 2024
    - 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top