~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/dynamic.rst

  • Committer: Brian Aker
  • Date: 2010-11-11 23:42:09 UTC
  • mto: (1932.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1930.
  • Revision ID: brian@tangent.org-20101111234209-u3j07lya1dhcon45
Adding in concurrent execute support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
By adding WITH NO RETURN you can have EXECUTE then no errors will be
15
15
generated and no data will be returned by the execution of the statement.
 
16
 
 
17
If you want to launch the query in a separate session, you can do that with
 
18
the following:
 
19
EXECUTE "SELECT 1" CONCURRENT;
 
20
 
 
21
The query will run in a new session and will execute as the user that
 
22
launched it. It can be killed via KILL and the system limit on total number
 
23
of sessions will be enforced.