)
metadata.create_all(connection)
connection.execute(
- t1.insert(), dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")])
+ t1.insert(),
+ dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")]),
)
row = connection.execute(t1.select()).first()
eq_(row, ([5], [5], [6], [7], [decimal.Decimal("6.4")]))
)
metadata.create_all(connection)
connection.execute(
- t1.insert(), dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")])
+ t1.insert(),
+ dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")]),
)
row = connection.execute(t1.select()).first()
eq_(row, ([5], [5], [6], [7], [decimal.Decimal("6.4")]))