From bb5ae29c168859601734780a1cc923d96a90cd29 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 12 Jun 2004 11:18:50 +0000 Subject: [PATCH] r9591: add boolean where capability for mysql 4.1 --- db-mysql/mysql-sql.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db-mysql/mysql-sql.lisp b/db-mysql/mysql-sql.lisp index 224c778..11a51b0 100644 --- a/db-mysql/mysql-sql.lisp +++ b/db-mysql/mysql-sql.lisp @@ -685,7 +685,8 @@ #-mysql-client-v4.1 nil) (defmethod db-type-has-boolean-where? ((db-type (eql :mysql))) - nil) + #+mysql-client-v4.1 t + #-mysql-client-v4.1 nil) (defmethod db-type-has-union? ((db-type (eql :mysql))) (not (eql (schar mysql::*mysql-client-info* 0) #\3))) -- 2.34.1