From: Kevin M. Rosenberg Date: Sun, 23 May 2004 05:32:40 +0000 (+0000) Subject: r9441: sql/classes.lisp: honor case of string tables when outputting queries X-Git-Tag: v3.8.6~404 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=d0b59237966d6fbc27adcbbae11fa85087ea122d r9441: sql/classes.lisp: honor case of string tables when outputting queries --- diff --git a/ChangeLog b/ChangeLog index 191c459..a7ce8d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +22 May 2004 Kevin Rosenberg + * Version 2.10.21 released + * sql/classes.lisp: honor case of string tables when outputting queries + 22 May 2004 Kevin Rosenberg * Version 2.10.20 released: Oracle backend now fails 6 out of 200 tests * TODO: Added 2 variances from CommonSQL. Add tests for owner phrases diff --git a/sql/classes.lisp b/sql/classes.lisp index d1d8ff7..bd87f78 100644 --- a/sql/classes.lisp +++ b/sql/classes.lisp @@ -586,9 +586,7 @@ uninclusive, and the args from that keyword to the end." (write-string " FROM " *sql-stream*) (typecase from (list (output-sql (apply #'vector from) database)) - (string (write-string - (sql-escape - (convert-to-db-default-case from database)) *sql-stream*)) + (string (write-string from *sql-stream*)) (t (output-sql from database)))) (when inner-join (write-string " INNER JOIN " *sql-stream*)