From 83e8fc53297d449257face2741b78169c429059d Mon Sep 17 00:00:00 2001 From: Nathan Bird Date: Fri, 27 Feb 2009 17:48:05 -0500 Subject: [PATCH] Don't declare the the column precisions to be a fixnum since odbc implementations like to set it to 2147483647, we aren't going to allocate anything of this size, we use guards such as max-precision on that. --- db-odbc/odbc-dbi.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db-odbc/odbc-dbi.lisp b/db-odbc/odbc-dbi.lisp index fb33f52..6d462e9 100644 --- a/db-odbc/odbc-dbi.lisp +++ b/db-odbc/odbc-dbi.lisp @@ -102,7 +102,7 @@ :accessor data-ptrs) (column-out-len-ptrs :initform (make-array 0 :adjustable t :fill-pointer t) :accessor column-out-len-ptrs) - (column-precisions :initform (make-array 0 :element-type 'fixnum :adjustable t :fill-pointer t) + (column-precisions :initform (make-array 0 :element-type 'integer :adjustable t :fill-pointer t) :accessor column-precisions) (column-scales :initform (make-array 0 :element-type 'fixnum :adjustable t :fill-pointer t) :accessor column-scales) -- 2.34.1