Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/MySQLdb/constants/FLAG.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""MySQL FLAG Constants
3These flags are used along with the FIELD_TYPE to indicate various
4properties of columns in a result set.
6"""
8NOT_NULL = 1
9PRI_KEY = 2
10UNIQUE_KEY = 4
11MULTIPLE_KEY = 8
12BLOB = 16
13UNSIGNED = 32
14ZEROFILL = 64
15BINARY = 128
16ENUM = 256
17AUTO_INCREMENT = 512
18TIMESTAMP = 1024
19SET = 2048
20NUM = 32768
21PART_KEY = 16384
22GROUP = 32768
23UNIQUE = 65536