~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/dynamic.rst

  • Committer: Brian Aker
  • Date: 2010-11-27 13:38:27 UTC
  • mfrom: (1955.1.3 quick)
  • Revision ID: brian@tangent.org-20101127133827-fowoi26sizq1zneg
Rollup of staging, mostly UDL

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
the following:
19
19
EXECUTE "SELECT 1" CONCURRENT;
20
20
 
21
 
By adding "WAIT" to a CONCURRENT execute, you can have the session that
22
 
called EXECUTE wait till the child is finished before returning.
23
 
 
24
21
The query will run in a new session and will execute as the user that
25
22
launched it. It can be killed via KILL and the system limit on total number
26
23
of sessions will be enforced.