rittenhop-dev/versions/5.94.2/node_modules/knex/lib/query/constants.js

16 lines
298 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
/**
* internal constants, do not use in application code
*/
module.exports = {
lockMode: {
forShare: 'forShare',
forUpdate: 'forUpdate',
forNoKeyUpdate: 'forNoKeyUpdate',
forKeyShare: 'forKeyShare',
},
waitMode: {
skipLocked: 'skipLocked',
noWait: 'noWait',
},
};