~jbaker/storm/nose_plugin

« back to all changes in this revision

Viewing changes to tests/tutorial.txt

  • Committer: Gustavo Niemeyer
  • Date: 2008-06-26 11:57:22 UTC
  • mfrom: (235.2.24 need-for-speed-revenge)
  • Revision ID: gustavo@niemeyer.net-20080626115722-ekl4af6sx2pn08d0
Merging need-for-speed-revenge branch [a=niemeyer,jamesh,radix]
[r=jamesh,therve]

This branch introduces a number of fixes, optimizations, and extensions
on the cextensions module, with speedup purposes.  The module is now
built by default, but still disabled unless the STORM_CEXTENSIONS=1
environment variable is defined.

Besides these, Chris also provided a mechanism to cache ClassAliases,
to prevent the cost of rebuilding the ClassInfo for each alias.

Show diffs side-by-side

added added

removed removed

Lines of Context:
895
895
...                     Employee.company_id == AnotherEmployee.company_id,
896
896
...                     Employee.id > AnotherEmployee.id)
897
897
>>> list(result)
898
 
[...] EXECUTE: 'SELECT employee.company_id, employee.id, employee.name, "...".company_id, "...".id, "...".name FROM employee, employee AS "..." WHERE employee.company_id = "...".company_id AND employee.id > "...".id', ()
 
898
[...] EXECUTE: u'SELECT employee.company_id, employee.id, employee.name, "...".company_id, "...".id, "...".name FROM employee, employee AS "..." WHERE employee.company_id = "...".company_id AND employee.id > "...".id', ()
899
899
[...] DONE
900
900
[(<Employee object at ...>, <Employee object at ...>)]
901
901
 
914
914
list.
915
915
 
916
916
 
917
 
## vim:ts=4:sw=4:et:ft=moin
 
917
## vim:ts=4:sw=4:et:ft=moin1_5