pgLatLon
annotate create_test_db.sh @ 79:16787a19a325
Do not return CSTRING to static memory
Avoids wrong pfree under certain circumstances
(e.g. array_agg on empty EBOX or ECLUSTER).
Avoids wrong pfree under certain circumstances
(e.g. array_agg on empty EBOX or ECLUSTER).
| author | jbe | 
|---|---|
| date | Thu Oct 23 10:16:01 2025 +0200 (7 days ago) | 
| parents | 3b70e93cc07d | 
| children | 
| rev | line source | 
|---|---|
| jbe@0 | 1 #!/bin/sh | 
| jbe@0 | 2 dropdb latlon_test --if-exists | 
| jbe@0 | 3 createdb latlon_test || exit 1 | 
| jbe@0 | 4 psql -v ON_ERROR_STOP=1 -f create_test_db.schema.sql latlon_test || exit 1 | 
| jbe@0 | 5 for i in 1 2 3 4 5 6 7 8 9 10 | 
| jbe@0 | 6 do | 
| jbe@0 | 7 psql -v ON_ERROR_STOP=1 -f create_test_db.data.sql latlon_test || exit 1 | 
| jbe@0 | 8 done |