From: Kevin M. Rosenberg Date: Sat, 14 Aug 2004 16:36:17 +0000 (+0000) Subject: r9874: 14 Aug 2004 Kevin Rosenberg X-Git-Tag: v3.8.6~255 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=d535823479987a0d3bf45d08b02e106e69378ff7 r9874: 14 Aug 2004 Kevin Rosenberg * TODO: Add bug report about SQL generation with a table containing two join slots. --- diff --git a/ChangeLog b/ChangeLog index eb12926..7c03b70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +14 Aug 2004 Kevin Rosenberg + * TODO: Add bug report about SQL generation with a table + containing two join slots. + 3 Aug 2004 Kevin Rosenberg * Version 3.0.0 Release * sql/expressions.lisp: Change declaration that diff --git a/TODO b/TODO index 87949bf..190156e 100644 --- a/TODO +++ b/TODO @@ -6,6 +6,9 @@ TESTS TO ADD * Number and Char field types * symbol slot * generalized-boolean slot +* Table with two join slots (bug reported on clsql-help 8/13/04 about + SQL FROM clause missing the second join table and the WHERE clause + having an ',' instead of ' AND ' joining phrases. OPTIMIZATIONS diff --git a/debian/changelog b/debian/changelog index c3d11b6..fa20f99 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (3.0.0-2) unstable; urgency=low + + * Change assignment in rules file + + -- Kevin M. Rosenberg Fri, 6 Aug 2004 10:09:04 -0600 + cl-sql (3.0.0-1) unstable; urgency=low * New upstream diff --git a/debian/rules b/debian/rules index c901c18..22a32dc 100755 --- a/debian/rules +++ b/debian/rules @@ -20,9 +20,9 @@ UPSTREAM_VER := $(shell sed -n -e "s/${pkg} (\(.*\)-[0-9A-Za-z\.]).*/\1/p" < deb ## Lisp sources srcs := $(wildcard sql/*.lisp) clsql.asd srcs-uffi := $(wildcard uffi/*.lisp) $(wildcard uffi/*.c) -srcs-uffi-so := $(wildcard uffi/*.so) +srcs-uffi-so = $(wildcard uffi/*.so) srcs-mysql := $(wildcard db-mysql/*.lisp) $(wildcard db-mysql/*.c) -srcs-mysql-so := $(wildcard db-mysql/*.so) +srcs-mysql-so = $(wildcard db-mysql/*.so) srcs-pg := $(wildcard db-postgresql/*.lisp) srcs-pg-socket := $(wildcard db-postgresql-socket/*.lisp) srcs-aodbc := $(wildcard db-aodbc/*.lisp)