/** * postgres-mcp — Partitioning Preprocessing * * Preprocessing functions to normalize partition parameters. * Handles aliases, schema.table parsing, and bounds construction. */ /** * Parse schema from schema.table format identifier * Returns { name, schema? } or undefined if input is undefined */ export declare function parseSchemaFromIdentifier(value: unknown): { name: string; schema: string | undefined; } | { name: unknown; schema: undefined; } | undefined; /** * Preprocess partition parameters to normalize common input patterns: * - parentTable → parent (common alias) * - table → parent (common alias) * - partitionName → name OR partition (common alias) * - partitionTable → partition (common alias) * - from/to → forValues (build RANGE bounds) * - values → forValues (build LIST bounds) * - modulus/remainder → forValues (build HASH bounds) */ export declare function preprocessPartitionParams(input: unknown): unknown; //# sourceMappingURL=preprocess.d.ts.map