- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ScanRange (0.12 sec)
-
internal/s3select/select.go
return nil } // RequestProgress - represents elements inside <RequestProgress/> in request XML. type RequestProgress struct { Enabled bool `xml:"Enabled"` } // ScanRange represents the ScanRange parameter. type ScanRange struct { // Start is the byte offset to read from (from the start of the file). Start *uint64 `xml:"Start"` // End is the offset of the last byte that should be returned when Start
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 21.2K bytes - Viewed (0) -
internal/s3select/select_test.go
<OutputSerialization> <JSON> </JSON> </OutputSerialization> <RequestProgress> <Enabled>FALSE</Enabled> </RequestProgress> <ScanRange><Start>76</Start><End>109</End></ScanRange> </SelectObjectContentRequest>`), }, { name: "select-remain", input: testInput, // Since we are doing offset, no headers are used.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 76.2K bytes - Viewed (0) -
internal/s3select/errors.go
statusCode: 400, cause: err, } } func errInvalidScanRangeParameter(err error) *s3Error { return &s3Error{ code: "InvalidRequestParameter", message: "The value of a parameter in ScanRange element is invalid. Check the service API documentation and try again.", statusCode: 400, cause: err, } } func errObjectSerializationConflict(err error) *s3Error { return &s3Error{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 14 16:48:36 UTC 2022 - 4.3K bytes - Viewed (0)