diff options
Diffstat (limited to 'src/interfaces/odbc/qresult.c')
-rw-r--r-- | src/interfaces/odbc/qresult.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/odbc/qresult.c b/src/interfaces/odbc/qresult.c index e2d7541e362..151f2ab2176 100644 --- a/src/interfaces/odbc/qresult.c +++ b/src/interfaces/odbc/qresult.c @@ -32,8 +32,6 @@ #define FALSE (BOOL)0 #endif -extern GLOBAL_VALUES globals; - /* * Used for building a Manual Result only @@ -119,7 +117,7 @@ QR_Constructor() rv->cursor = NULL; rv->aborted = FALSE; - rv->cache_size = globals.fetch_max; + rv->cache_size = 0; rv->rowset_size = 1; } |