an adaptor for postgres. this works, but i think my primary key and
authorAllen Day <allenday@users.sourceforge.net>
Fri, 21 Feb 2003 08:42:29 +0000 (08:42 +0000)
committerAllen Day <allenday@users.sourceforge.net>
Fri, 21 Feb 2003 08:42:29 +0000 (08:42 +0000)
commit4422e22a83b634d717c69839aec919cb0bbe7e62
tree242330b1c038e70c6ca38ad44da88132646ddc54
parent014a647e69293f8e51e6712f4ecc6d9a013733c4
an adaptor for postgres.  this works, but i think my primary key and
foreign key parses are hackish.  they require the pk/fk clause
_right_after_ the field declaration, which i don't think is how postgres
requires it.

also i've found a bug in the mysql parser that is in the postgres parser
as well that doesn't allow comments in the middle of table create
statements.  this will cause a failed parse:

create table x (
x int,
-- a comment
);
lib/SQL/Translator/Parser/PostGreSQL.pm [new file with mode: 0644]