From 18738a9744b8741091444d11fc317ecee6ff3b14 Mon Sep 17 00:00:00 2001 From: Russ Tyndall Date: Mon, 27 Jun 2011 14:15:01 -0400 Subject: [PATCH] fixed bad SQL_C_SBIGINT call that must have been a bad merge --- db-odbc/odbc-api.lisp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/db-odbc/odbc-api.lisp b/db-odbc/odbc-api.lisp index 5d2acf9..79b38f2 100644 --- a/db-odbc/odbc-api.lisp +++ b/db-odbc/odbc-api.lisp @@ -702,8 +702,7 @@ as possible second argument) to the desired representation of date/time/timestam (get-cast-binary data-ptr out-len *binary-format*)) ((#.$SQL_C_SSHORT #.$SQL_C_STINYINT) ; LMH short ints (get-cast-short data-ptr)) ; LMH - (#.$SQL_C_SBIGINT (uffi:allocate-foreign-object #.$ODBC-BIG-TYPE) - (get-cast-short data-ptr)) + (#.$SQL_C_SBIGINT (get-cast-big data-ptr)) #+ignore (#.$SQL_C_CHAR (code-char (get-cast-short data-ptr))) -- 2.34.1