Changeset: 3246b9c3b012 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3246b9c3b012
Modified Files:
sql/backends/monet5/sql.c
Branch: resultset
Log Message:
Reduce buffer size in copy-into
The maximal record size is independent of the stream buffer size.
Therefore, we don't have to resort to very long stream blocks.
diffs (12 lines):
diff --git a/sql/backends/monet5/sql.c b/sql/backends/monet5/sql.c
--- a/sql/backends/monet5/sql.c
+++ b/sql/backends/monet5/sql.c
@@ -3142,7 +3142,7 @@ mvc_import_table_wrap(Client cntxt, MalB
#if SIZEOF_VOID_P == 4
s = bstream_create(ss, 0x20000);
#else
- s = bstream_create(ss, 0x2000000);
+ s = bstream_create(ss, 0x200000);
#endif
#ifdef WIN32
fix_windows_newline(tsep);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list