Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WriterArgs (9.66 sec)

  1. internal/s3select/json/args.go

    	*args = ReaderArgs(parsedArgs)
    	args.unmarshaled = true
    	return nil
    }
    
    // WriterArgs - represents elements inside <OutputSerialization><JSON/> in request XML.
    type WriterArgs struct {
    	RecordDelimiter string `xml:"RecordDelimiter"`
    	unmarshaled     bool
    }
    
    // IsEmpty - returns whether writer args is empty or not.
    func (args *WriterArgs) IsEmpty() bool {
    	return !args.unmarshaled
    }
    
    // UnmarshalXML - decodes XML data.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 2.7K bytes
    - Viewed (0)
  2. internal/s3select/csv/args.go

    				default:
    					return errors.New("unrecognized option")
    				}
    			}
    		}
    	}
    
    	args.unmarshaled = true
    	return nil
    }
    
    // WriterArgs - represents elements inside <OutputSerialization><CSV/> in request XML.
    type WriterArgs struct {
    	QuoteFields          string `xml:"QuoteFields"`
    	RecordDelimiter      string `xml:"RecordDelimiter"`
    	FieldDelimiter       string `xml:"FieldDelimiter"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 06 16:56:10 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  3. internal/s3select/select.go

    	input.unmarshaled = true
    	return nil
    }
    
    // OutputSerialization - represents elements inside <OutputSerialization/> in request XML.
    type OutputSerialization struct {
    	CSVArgs     csv.WriterArgs  `xml:"CSV"`
    	JSONArgs    json.WriterArgs `xml:"JSON"`
    	unmarshaled bool
    	format      string
    }
    
    // IsEmpty - returns whether output serialization is empty or not.
    func (output *OutputSerialization) IsEmpty() bool {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 21K bytes
    - Viewed (0)
Back to top