Tags: ringsaturn/pg-tzf
Tags
feat: add batch timezone lookup functions (#1) - Add tzf_tzname_batch to process arrays of coordinates - Add tzf_tzname_batch_points to process arrays of points - Add comprehensive test cases for batch operations - Optimize performance by reducing PostgreSQL <-> Rust boundary crossings - Support parallel execution with IMMUTABLE PARALLEL SAFE This change improves performance when processing multiple coordinates by reducing function call overhead between PostgreSQL and Rust. The batch functions return timezone names directly, maintaining the same output format as the single-point lookup functions.