bdr: Fix typo causing the wrong tuple format to be sent
authorAndres Freund <[email protected]>
Thu, 20 Mar 2014 21:14:27 +0000 (22:14 +0100)
committerAndres Freund <[email protected]>
Thu, 3 Jul 2014 15:55:21 +0000 (17:55 +0200)
contrib/bdr/bdr_output.c

index 5bea762669cd891e9869b65b5e75a52cb3cb4407..8c05927c9a6a485e29e9eaeb3d55bab6373ed061 100644 (file)
@@ -573,7 +573,7 @@ write_tuple(BdrOutputData *data, StringInfo out, Relation rel,
            char       *outputstr;
            int         len;
 
-           pq_sendbyte(out, 's');  /* 'text' data follows */
+           pq_sendbyte(out, 't');  /* 'text' data follows */
 
            outputstr =
                OidOutputFunctionCall(typclass->typoutput, values[i]);