Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvalidDataSource (0.21 sec)

  1. internal/s3select/errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidDataSource(err error) *s3Error {
    	return &s3Error{
    		code:       "InvalidDataSource",
    		message:    "Invalid data source type. Only CSV, JSON, and Parquet are supported.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidRequestParameter(err error) *s3Error {
    	return &s3Error{
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 14 16:48:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Code:           "UnsupportedFunction",
    		Description:    "Encountered an unsupported SQL function.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidDataSource: {
    		Code:           "InvalidDataSource",
    		Description:    "Invalid data source type. Only CSV and JSON are supported at this time.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidExpressionType: {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 05:26:02 GMT 2024
    - 90.2K bytes
    - Viewed (6)
Back to top