import { DerivedRelation, DielAst } from "../../parser/dielAstTypes"; /** * the pass removes the .* as well as filling in where the columns comes from if it's not specified * - visit by topological order * - supports subqueries, e.g., select k.* from (select * from t1) k; */ export declare function NormalizeColumnSelection(ast: DielAst): void; export declare function NormalizeColumnForDerivedRelation(ast: DielAst, view: DerivedRelation): void; //# sourceMappingURL=normalizeColumnSelection.d.ts.map