Skip Menu |

This queue is for tickets about the SQL-Translator CPAN distribution.

Report information
The Basics
Id: 13052
Status: resolved
Priority: 0/
Queue: SQL-Translator

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: 0.11003



Subject: BUG: SQL/Translator/Parser/PostgreSQL.pm timestamp with time zone
Hi, Attached a fix. Version: $Id: PostgreSQL.pm,v 1.40 2004/08/30 18:54:58 kycl4rk Exp $ --- SQL/Translator/Parser/PostgreSQL.pm 2005-06-01 14:06:30.000000000 +0100 +++ /usr/lib/perl5/site_perl/5.8.5/SQL/Translator/Parser/PostgreSQL.pm 2005-05-31 17:35:55.000000000 +0100 @@ -498,7 +498,7 @@ $return = { type => 'bytea' }; } | - /(timestamptz|timestamp)( with(out)? time zone)?/i + /(timestamptz|timestamp)( without time zone)?/i { $return = { type => 'timestamp' }; }