You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
476 B

"use strict";
const TableHints = module.exports = {
NOLOCK: "NOLOCK",
READUNCOMMITTED: "READUNCOMMITTED",
UPDLOCK: "UPDLOCK",
REPEATABLEREAD: "REPEATABLEREAD",
SERIALIZABLE: "SERIALIZABLE",
READCOMMITTED: "READCOMMITTED",
TABLOCK: "TABLOCK",
TABLOCKX: "TABLOCKX",
PAGLOCK: "PAGLOCK",
ROWLOCK: "ROWLOCK",
NOWAIT: "NOWAIT",
READPAST: "READPAST",
XLOCK: "XLOCK",
SNAPSHOT: "SNAPSHOT",
NOEXPAND: "NOEXPAND"
};
//# sourceMappingURL=table-hints.js.map