~lifeless/storm/bug-620615

« back to all changes in this revision

Viewing changes to tests/tutorial.txt

  • Committer: Gustavo Niemeyer
  • Date: 2008-04-04 23:03:34 UTC
  • mfrom: (215.3.1 trace-success)
  • Revision ID: gustavo@niemeyer.net-20080404230334-mdfnc6ldbahtledk
Merged trace-success branch [r=jamesh,jkakar] [f=199332]

This branch adds a hook to trace statement execution success, so
that tracking execution times and so on is possible.

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: '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
[...] DONE
899
900
[(<Employee object at ...>, <Employee object at ...>)]
900
901
 
901
902
>>> debug(False)