diff options
Diffstat (limited to 'test/dialect/postgres.py')
-rw-r--r-- | test/dialect/postgres.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dialect/postgres.py b/test/dialect/postgres.py index 78d47ef9d..a3d1f665b 100644 --- a/test/dialect/postgres.py +++ b/test/dialect/postgres.py @@ -24,8 +24,8 @@ class CompileTest(SQLCompileTest): dialect = postgres.dialect() table1 = table('mytable', column('myid', Integer), - column('name', String), - column('description', String), + column('name', String(128)), + column('description', String(128)), ) u = update(table1, values=dict(name='foo'), postgres_returning=[table1.c.myid, table1.c.name]) @@ -42,8 +42,8 @@ class CompileTest(SQLCompileTest): dialect = postgres.dialect() table1 = table('mytable', column('myid', Integer), - column('name', String), - column('description', String), + column('name', String(128)), + column('description', String(128)), ) i = insert(table1, values=dict(name='foo'), postgres_returning=[table1.c.myid, table1.c.name]) |