diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-30 20:29:48 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-30 20:29:48 -0500 |
| commit | 12073e281eebdece0fe4e24c6704d57eafdc9247 (patch) | |
| tree | 1c831d73551c5a2e490bae41af390bd44d6391b5 /test/aaa_profiling | |
| parent | 41d222b5f85d81c3cb7c33be284b9b5507463cb2 (diff) | |
| download | sqlalchemy-12073e281eebdece0fe4e24c6704d57eafdc9247.tar.gz | |
- SchemaItem, SchemaType now descend from common type
SchemaEventTarget, which supplies dispatch
- the dispatch now provides before_parent_attach(),
after_parent_attach(), events which generally bound the _set_parent()
event. [ticket:2037]
- the _on_table_attach mechanism now usually uses the
event dispatch
- fixed class-level event dispatch to propagate to all subclasses, not just
immediate subclasses
- fixed class-level event unpickling to handle more involved
inheritance hierarchies, needed by the new schema event dispatch.
- ForeignKeyConstraint doesn't re-call the column attach event
on ForeignKey objects that are already associated with the correct
Column
- we still need that ImportError on mysqldb CLIENT FLAGS to support
mock DBAPIs
Diffstat (limited to 'test/aaa_profiling')
| -rw-r--r-- | test/aaa_profiling/test_zoomark.py | 2 | ||||
| -rw-r--r-- | test/aaa_profiling/test_zoomark_orm.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/aaa_profiling/test_zoomark.py b/test/aaa_profiling/test_zoomark.py index d34ee0477..d798c48a6 100644 --- a/test/aaa_profiling/test_zoomark.py +++ b/test/aaa_profiling/test_zoomark.py @@ -358,7 +358,7 @@ class ZooMarkTest(TestBase): metadata = MetaData(engine) engine.connect() - @profiling.function_call_count(3012, {'2.4': 1711}) + @profiling.function_call_count(3266, {'2.4': 1711}) def test_profile_1_create_tables(self): self.test_baseline_1_create_tables() diff --git a/test/aaa_profiling/test_zoomark_orm.py b/test/aaa_profiling/test_zoomark_orm.py index ce2cfdc8e..ee0d59b2c 100644 --- a/test/aaa_profiling/test_zoomark_orm.py +++ b/test/aaa_profiling/test_zoomark_orm.py @@ -330,7 +330,7 @@ class ZooMarkTest(TestBase): session = sessionmaker()() engine.connect() - @profiling.function_call_count(4592) + @profiling.function_call_count(4912) def test_profile_1_create_tables(self): self.test_baseline_1_create_tables() |
