REFRESH.py 269 B

1234567891011121314151617
  1. """MySQL REFRESH Constants
  2. These constants seem to mostly deal with things internal to the
  3. MySQL server. Forget you saw this.
  4. """
  5. GRANT = 1
  6. LOG = 2
  7. TABLES = 4
  8. HOSTS = 8
  9. STATUS = 16
  10. THREADS = 32
  11. SLAVE = 64
  12. MASTER = 128
  13. READ_LOCK = 16384
  14. FAST = 32768