@sqlsmith/core
Version:
Core SQL schema merging engine with dependency resolution
12 lines • 559 B
TypeScript
import type { AST } from 'node-sql-parser';
import type { SqlDialect, SqlStatement } from '../types/sql-statement.js';
import type { StatementProcessor } from './base-processor.js';
export declare class CreateSequenceProcessor implements StatementProcessor {
getHandledTypes(): string[];
canProcess(statement: AST): boolean;
/**
* Extracts sequence statements from the given AST.
*/
extractStatements(ast: AST | AST[], filePath: string, _dialect: SqlDialect): SqlStatement[];
}
//# sourceMappingURL=create-sequence-processor.d.ts.map