|
From: Mike H. <th...@bi...> - 2003-04-23 12:37:15
|
On Tue, Apr 22, 2003 at 10:11:33PM -0700, David M. Cook wrote:
> 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:
In PostgreSQL < 7.3, 'datetime' is the same as 'timestamp'. In
PostgreSQL >= 7.3, it has been depreicated.
-- mikeh
|