From: David M. C. <da...@da...> - 2003-04-23 05:11:35
|
On Mon, Apr 21, 2003 at 10:16:12PM -0500, Ian Bicking wrote: > I'm planning on putting 0.4 out before too long. I've added Styles and > taken out the lazy fetching. There are a bunch of updates I want/need > to do to the documentation, but besides that I don't have any big plans > -- stuff like constraints (on the Python side) will wait. > > I might have missed something, though. Is there any unresolved issues > that should be dealt with before 0.4? There's a bogus couple of lines (544-5) in the DBConnection.PosgresConnection.guessClass method I submitted: elif t.startswith('datetime'): return Col.DateTimeCol, {} that were just copied from the old guessClass method. Since Postgres doesn't have antyhing that matches 'datetime' AFAIK, this doesn't do anything. I haven't had a chance to look at how date handling is done, so I don't know if changing this to something like: elif t.startswith('date') or t.startswith('time'): return Col.DateTimeCol, {} is useful or not. Dave |