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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {Version} from "../../../version"; import {alt, seq, Expression, ver, verNot} from "../combi"; import {IStatementRunnable} from "../statement_runnable"; import {SQLSourceSimple} from "./sql_source_simple"; export class SQLClient extends Expression { public getRunnable(): IStatementRunnable { const client = alt(verNot(Version.Cloud, "CLIENT SPECIFIED"), seq("USING", alt(ver(Version.v740sp05, seq("CLIENT", SQLSourceSimple)), ver(Version.v754, seq("CLIENTS IN", alt(SQLSourceSimple, "T000"))), ver(Version.v754, "ALL CLIENTS")))); return client; } } |