github.com/jackc/pgx/v5/pgproto3.FunctionCallResponse.Result (field)

10 uses

	github.com/jackc/pgx/v5/pgproto3 (current package)
		function_call_response.go#L12: 	Result []byte
		function_call_response.go#L29: 		dst.Result = nil
		function_call_response.go#L37: 	dst.Result = src[rp:]
		function_call_response.go#L45: 	if src.Result == nil {
		function_call_response.go#L48: 		dst = pgio.AppendInt32(dst, int32(len(src.Result)))
		function_call_response.go#L49: 		dst = append(dst, src.Result...)
		function_call_response.go#L59: 	for _, b := range src.Result {
		function_call_response.go#L67: 		formattedValue = map[string]string{"binary": hex.EncodeToString(src.Result)}
		function_call_response.go#L69: 		formattedValue = map[string]string{"text": string(src.Result)}
		function_call_response.go#L95: 	dst.Result, err = getValueFromJSON(msg.Result)