index-hints.js 273 B

1234567891011121314
  1. 'use strict';
  2. /**
  3. * An enum of index hints to be used in mysql for querying with index hints
  4. *
  5. * @property USE
  6. * @property FORCE
  7. * @property IGNORE
  8. */
  9. const IndexHints = module.exports = { // eslint-disable-line
  10. USE: 'USE',
  11. FORCE: 'FORCE',
  12. IGNORE: 'IGNORE'
  13. };