UNPKG

@sqlsmith/core

Version:

Core SQL schema merging engine with dependency resolution

13 lines 527 B
import type { AST } from 'node-sql-parser'; import type { SqlStatement } from '../types/sql-statement.js'; import type { StatementProcessor } from './base-processor.js'; export declare class CreateViewProcessor implements StatementProcessor { #private; getHandledTypes(): string[]; canProcess(statement: AST): boolean; /** * Extracts view statements from the given AST. */ extractStatements(ast: AST | AST[], filePath: string): SqlStatement[]; } //# sourceMappingURL=create-view-processor.d.ts.map