Wojtek Strzalka
Results
2
issues of
Wojtek Strzalka
Hi I had recently run into an issue while importing large pbf file. The problem was broken input stream and I ended up importing only half of the expected data...
Here is simplified example: ``` CREATE TABLE a (x INT4); CREATE TABLE b (x INT4); INSERT INTO a SELECT generate_series(1, 1000); INSERT INTO b SELECT generate_series(1, 100); ``` 1. So...
enhancement