Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errObjectSerializationConflict (0.15 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidDataType-239]
    	_ = x[ErrInvalidTextEncoding-240]
    	_ = x[ErrInvalidDataSource-241]
    	_ = x[ErrInvalidTableAlias-242]
    	_ = x[ErrMissingRequiredParameter-243]
    	_ = x[ErrObjectSerializationConflict-244]
    	_ = x[ErrUnsupportedSQLOperation-245]
    	_ = x[ErrUnsupportedSQLStructure-246]
    	_ = x[ErrUnsupportedSyntax-247]
    	_ = x[ErrUnsupportedRangeHeader-248]
    	_ = x[ErrLexerInvalidChar-249]
    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/select.go

    		parsedOutput.format = csvFormat
    		found++
    	}
    	if !parsedOutput.JSONArgs.IsEmpty() {
    		parsedOutput.format = jsonFormat
    		found++
    	}
    	if found != 1 {
    		return errObjectSerializationConflict(fmt.Errorf("either CSV or JSON should be present in OutputSerialization"))
    	}
    
    	*output = OutputSerialization(parsedOutput)
    	output.unmarshaled = true
    	return nil
    }
    
    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