Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WriterArgs (0.05 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.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 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"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 20 18:31:45 UTC 2024
    - 5.7K 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 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 22 00:33:43 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top