diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-04-24 12:01:04 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-04-24 12:01:04 -0400 |
| commit | 998c66fa8b1997453c793da5faa7d4cc436739b2 (patch) | |
| tree | 78303f321f4d97304c24c105ea57658d15abaac8 /test/engine/test_reflection.py | |
| parent | 2086728eb5c9d25d7e604fc0fc468d5ce5464122 (diff) | |
| download | sqlalchemy-998c66fa8b1997453c793da5faa7d4cc436739b2.tar.gz | |
- [feature] The column_reflect event now
accepts the Inspector object as the first
argument, preceding "table". Code which
uses the 0.7 version of this very new
event will need modification to add the
"inspector" object as the first argument.
[ticket:2418]
Diffstat (limited to 'test/engine/test_reflection.py')
| -rw-r--r-- | test/engine/test_reflection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/test_reflection.py b/test/engine/test_reflection.py index e59849d98..371a4c1b4 100644 --- a/test/engine/test_reflection.py +++ b/test/engine/test_reflection.py @@ -1645,7 +1645,7 @@ class ColumnEventsTest(fixtures.TestBase): from sqlalchemy.schema import Table m = MetaData(testing.db) - def column_reflect(table, column_info): + def column_reflect(insp, table, column_info): if column_info['name'] == col: column_info.update(update) |
