Mercurial > p > mysql-python > mysqldb-2
annotate MySQLdb/constants/REFRESH.py @ 35:e7bd07afbcb9 MySQLdb
Conflict-filled merge from 1.2br for 558:559 set and exception fixes
author | kylev |
---|---|
date | Thu, 12 Feb 2009 00:23:41 +0000 |
parents | 7773efbe9b30 |
children |
rev | line source |
---|---|
14 | 1 """ |
2 MySQL REFRESH Constants | |
3 ----------------------- | |
0 | 4 |
5 These constants seem to mostly deal with things internal to the | |
6 MySQL server. Forget you saw this. | |
7 """ | |
14 | 8 __revision__ = "$Revision$"[11:-2] |
9 __author__ = "$Author$"[9:-2] | |
0 | 10 |
11 GRANT = 1 | |
12 LOG = 2 | |
13 TABLES = 4 | |
14 HOSTS = 8 | |
15 STATUS = 16 | |
16 THREADS = 32 | |
17 SLAVE = 64 | |
18 MASTER = 128 | |
19 READ_LOCK = 16384 | |
20 FAST = 32768 |