Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fmt (0.27 sec)

  1. internal/s3select/json/args.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package json
    
    import (
    	"encoding/xml"
    	"fmt"
    	"strings"
    )
    
    const (
    	document = "document"
    	lines    = "lines"
    
    	defaultRecordDelimiter = "\n"
    )
    
    // ReaderArgs - represents elements inside <InputSerialization><JSON/> in request XML.
    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

    					if utf8.RuneCountInString(s) > 1 {
    						return fmt.Errorf("unsupported QuoteCharacter '%v'", s)
    					}
    					args.QuoteCharacter = s
    				case "QuoteEscapeCharacter":
    					switch utf8.RuneCountInString(s) {
    					case 0:
    						args.QuoteEscapeCharacter = defaultQuoteEscapeCharacter
    					case 1:
    						args.QuoteEscapeCharacter = s
    					default:
    						return fmt.Errorf("unsupported QuoteEscapeCharacter '%v'", s)
    					}
    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)
Back to top