From: David M. <ig...@us...> - 2006-01-18 10:21:19
|
Update of /cvsroot/myoledb/myoledb3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5666 Modified Files: myprov.h Log Message: Removed two defuct constants: ACTIVE_ROWS_LIMIT (replaced by the number of actual rows we have to deal with) MAX_TOTAL_ROWBUFF_SIZE (replaced by failing when a machine actually runs out of RAM, not on an arbitrary boundary) Index: myprov.h =================================================================== RCS file: /cvsroot/myoledb/myoledb3/myprov.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- myprov.h 17 Jan 2006 11:50:20 -0000 1.4 +++ myprov.h 18 Jan 2006 10:20:51 -0000 1.5 @@ -48,10 +48,8 @@ #endif #define MAX_HEAP_SIZE 128000 -#define MAX_TOTAL_ROWBUFF_SIZE (80*1024*1024) // Max for all row buffers. #define MAX_IBUFFER_SIZE 2000000 #define MAX_BIND_LEN (MAX_IBUFFER_SIZE/10) -#define ACTIVE_ROWS_LIMIT 200 #define STAT_ENDOFCURSOR 0x00000100 // for forward-only means fully materialized |