Documentation bug

Issue #2639 resolved
Andreas Jung created an issue

http://docs.sqlalchemy.org/en/rel_0_8/core/types.html#replacing-processors

has the following example:

from sqlalchemy.dialects import postgresql

table = Table('foo', meta, Column('ipaddress', postgresql.INET), Column('elements', postgresql.ARRAY(str)) )

I think it should be

postgresql.ARRAY(sqlalchemy.String)

Comments (4)

  1. Log in to comment