'use strict';
/**
* An enum of index hints to be used in mysql for querying with index hints
*
* @propertyUSE
* @propertyFORCE
* @propertyIGNORE
*/constIndexHints = module.exports = { // eslint-disable-lineUSE: 'USE',
FORCE: 'FORCE',
IGNORE: 'IGNORE'
};