001package gudusoft.gsqlparser.lineage2.contract;
002
003/**
004 * Scope of TEMP_TABLE / TABLE_VARIABLE / SCALAR_VARIABLE / CURSOR
005 * endpoints (lineage2-contract.md ยง4.1, D-11).
006 *
007 * <p>Internal API: not part of the public gsqlparser surface.
008 */
009public enum ScopeKind {
010    BATCH, PROCEDURE, SESSION, GLOBAL
011}