Changeset: 83ff8b657231 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=83ff8b657231
Modified Files:
        sql/backends/monet5/sql_result.mx
Branch: Dec2011
Log Message:

mvc_export_prepare: write correct tuples

Tuple values are separated by ",\t".  If you don't you make JDBC angry
and it will bite you.


diffs (12 lines):

diff --git a/sql/backends/monet5/sql_result.mx 
b/sql/backends/monet5/sql_result.mx
--- a/sql/backends/monet5/sql_result.mx
+++ b/sql/backends/monet5/sql_result.mx
@@ -800,7 +800,7 @@ mvc_export_prepare(mvc *c, stream *out, 
                q->paramlen = len;
                q->params = SA_NEW_ARRAY(q->sa, sql_subtype, len);
                if (result) 
-                       extra = ",\"\",\"\",\"\"";
+                       extra = ",\t\"\",\t\"\",\t\"\"";
                for (n = c->params->h, i=0; n; n = n->next, i++) {
                        a = n->data;
                        t = &a->type;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to