Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {altPrio, seq, optPrio, Expression, ver, tok} from "../combi";
import {SQLAsName, SQLCDSParameters, DatabaseTable, FieldChain} from ".";
import {IStatementRunnable} from "../statement_runnable";
import {Version} from "../../../version";
import {WAt} from "../../1_lexer/tokens";
import {WithName} from "./with_name";
export class SQLFromSource extends Expression {
public getRunnable(): IStatementRunnable {
// https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abennews-752-open_sql.htm#!ABAP_MODIFICATION_1@1@
const tab = ver(Version.v752, seq(tok(WAt), FieldChain));
const aas = seq("AS", SQLAsName);
return seq(altPrio(WithName, seq(DatabaseTable, optPrio(SQLCDSParameters)), tab),
optPrio(ver(Version.v752, "WITH PRIVILEGED ACCESS")),
optPrio(aas));
}
} |