@abaplint/core
Version:
abaplint - Core API
14 lines • 586 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SQLHints = void 0;
const combi_1 = require("../combi");
const _1 = require(".");
class SQLHints extends combi_1.Expression {
getRunnable() {
const type = (0, combi_1.altPrio)("ORACLE", "ADABAS", "AS400", "DB2", "HDB", "MSSQLNT", "SYBASE", "DB6", "INFORMIX");
const ret = (0, combi_1.seq)("%_HINTS", (0, combi_1.plus)((0, combi_1.seq)(type, (0, combi_1.alt)(_1.Constant, _1.FieldSub))));
return ret;
}
}
exports.SQLHints = SQLHints;
//# sourceMappingURL=sql_hints.js.map