icebird
Version:
Apache Iceberg client for javascript
17 lines • 636 B
TypeScript
/**
* Avro sanitization function.
*
* @param {string} name
* @returns {string}
*/
export function sanitize(name: string): string;
/**
* Helper to check if a row matches an equality delete predicate.
* For simplicity, compares all fields (except file_path and pos) by strict equality.
*
* @param {Record<string, any>} row - row from a data file
* @param {Record<string, any>} deletePredicate - row from an equality delete file
* @returns {boolean} true if row matches the predicate.
*/
export function equalityMatch(row: Record<string, any>, deletePredicate: Record<string, any>): boolean;
//# sourceMappingURL=utils.d.ts.map