~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/kill.rst

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
Calling KILL will terminate a either a running query, or disconnect a
7
7
connection, i.e. a session, from the database.
 
8
 
 
9
The way this works is that your connection sets a 'kill' flag in the session
 
10
you want to kill. At various points in query execution, a session will
 
11
check if the kill flag has been set, and if so, will quickly exit. So while
 
12
the KILL command will not strictly immediately kill the session, it should
 
13
appear to be fairly instantaneous.
 
14
 
 
15
Some engines such as Innobase will also check for the kill flag
 
16
during a lock wait, allowing you to kill a session waiting for a row lock.