Зачем же обычному человеку информация из прошлой публикации "Как поместить весь мир в обычный ноутбук: PostgreSQL и OpenStreetMap"? Если надоело в пятницу читать мемасики и лайкать фотографии котиков в соцсетях, то можно задаться глобальными проблемами аналитики и посчитать протяженность дорог России. Ведь не за горами времена автомобилей с автопилотами... Это конечно не 42, как ответ на главный вопрос жизни, вселенной и всего такого, но результаты будут тоже достаточно лаконичными.

Для этого нам понадобится ноутбук или обычный десктоп, несколько десятков гигабайт свободного места, установленный docker, JVM 11+, maven и мой проект openstreetmap_h3. Анализировать геоданные мы будем с помощью PostgreSQL 15.1, PostGIS 3.3.2, H3 4.1.1. Исходные данные из проекта OpenStreetMap, запросы к БД не претендуют на правильность и качество исходных данных в масштабе страны нам не известно! Данная публикация является грубой интерпретацией данных OSM в первом приближении и не претендует на истинность и неопровержимость. Так же как не стоит верить оценке Хабра на чтение статьи в 127 минут, что сильно превышает реальные 5 минут, которые вы потратите на ознакомление с публикацией.

Создание базы OSM геоданных для России

Сначала скачаем OSM данные для всей России:

~/dev/map/russia$ wget https://download.geofabrik.de/russia-latest.osm.pbf

Клонируем мою утилиту для импорта данных:

git clone https://github.com/igor-suhorukov/openstreetmap_h3.git
Cloning into 'openstreetmap_h3'...
remote: Enumerating objects: 141, done.
remote: Counting objects: 100% (141/141), done.
remote: Compressing objects: 100% (80/80), done.
remote: Total 141 (delta 41), reused 135 (delta 37), pack-reused 0
Receiving objects: 100% (141/141), 3.01 MiB | 1.11 MiB/s, done.
Resolving deltas: 100% (41/41), done.

git checkout dev/postgresql15

Соберем проект:

mvn package
[INFO] Scanning for projects...
[INFO] 
[INFO] -------< com.github.igor-suhorukov:osm-to-pgsnapshot-schema-ng >--------
[INFO] Building osm-to-pgsnapshot-schema-ng 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ osm-to-pgsnapshot-schema-ng ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 12 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ osm-to-pgsnapshot-schema-ng ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 24 source files to /home/acc/dev/map/russia/openstreetmap_h3/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ osm-to-pgsnapshot-schema-ng ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/acc/dev/map/russia/openstreetmap_h3/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ osm-to-pgsnapshot-schema-ng ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ osm-to-pgsnapshot-schema-ng ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ osm-to-pgsnapshot-schema-ng ---
[INFO] Building jar: /home/acc/dev/map/russia/openstreetmap_h3/target/osm-to-pgsnapshot-schema-ng-1.0-SNAPSHOT.jar
[INFO] 
[INFO] --- spring-boot-maven-plugin:2.7.3:repackage (default) @ osm-to-pgsnapshot-schema-ng ---
[INFO] Layout: ZIP
[INFO] Replacing main artifact with repackaged archive
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  2.448 s
[INFO] Finished at: 2023-02-10T13:10:55+03:00
[INFO] ------------------------------------------------------------------------

Затем соберем контейнер postgres15_postgis на основе postgis:15-3.3

openstreetmap_h3/postgis_docker_14-master$ docker build -t postgres15_postgis .
Sending build context to Docker daemon  9.728kB
Step 1/22 : FROM postgis/postgis:15-3.3
 ---> 541d2dbb761c
Step 2/22 : RUN apt-get update
 ---> Using cache
 ---> 89468724cf88
Step 3/22 : RUN apt-get install -y pgxnclient make pip git postgresql-server-dev-all clang-format clang-tidy g++ zstd
 ---> Using cache
 ---> de81a4e10a28
Step 4/22 : RUN pip install cmake --upgrade
 ---> Using cache
 ---> 8fd7cec5cf38
Step 5/22 : RUN pgxn install h3
 ---> Using cache
 ---> 4d7fc39b658a
Step 6/22 : RUN apt-get update && apt-get install -y parallel
 ---> Using cache
 ---> b78b4485c6cc
Step 7/22 : ADD docker-entrypoint-initdb.d /docker-entrypoint-initdb.d
 ---> Using cache
 ---> 09aba7266088
Step 8/22 : RUN apt-get install -y openjdk-11-jdk
 ---> Using cache
 ---> d9258dc25c23
Step 9/22 : RUN git clone https://github.com/pgspider/jdbc_fdw.git /home/jdbc_fwd --branch v0.3.0
 ---> Using cache
 ---> b32adf61a2c7
Step 10/22 : RUN cd /home/jdbc_fwd/ && PATH=/usr/lib/postgresql/14/bin/:$PATH make USE_PGXS=1 clean
 ---> Using cache
 ---> 44e9ae31e94d
Step 11/22 : RUN mkdir /usr/lib64
 ---> Using cache
 ---> bd7a535efd22
Step 12/22 : RUN ln -s /usr/lib/jvm/java-11-openjdk-amd64/lib/server/libjvm.so /usr/lib64/libjvm.so
 ---> Using cache
 ---> 2075f8de3a27
Step 13/22 : RUN cd /home/jdbc_fwd/ && PATH=/usr/lib/postgresql/14/bin/:$PATH make USE_PGXS=1 install
 ---> Using cache
 ---> b54263f27520
Step 14/22 : RUN cd / && rm -rf /home/jdbc_fwd/
 ---> Using cache
 ---> 44a7427abfe6
Step 15/22 : RUN cd /home && git clone https://github.com/heterodb/pg-strom.git
 ---> Using cache
 ---> bdb2e3aa48c5
Step 16/22 : RUN cd /home/pg-strom/arrow-tools && make PG_CONFIG=/usr/lib/postgresql/14/bin/pg_config PROG=pg2arrow install-pg2arrow
 ---> Using cache
 ---> 5d997109e811
Step 17/22 : RUN apt-get install -y curl
 ---> Using cache
 ---> 3fc5e6b7021c
Step 18/22 : RUN curl https://install.citusdata.com/community/deb.sh | bash
 ---> Using cache
 ---> 4e8d1a766cc8
Step 19/22 : RUN apt-get purge -y --auto-remove curl
 ---> Using cache
 ---> be3dcae7d6ce
Step 20/22 : RUN apt-get -y install apt-utils postgresql-15-citus-11.1
 ---> Using cache
 ---> 42f07920501e
Step 21/22 : RUN echo "shared_preload_libraries='citus'" >> /usr/share/postgresql/postgresql.conf.sample
 ---> Using cache
 ---> bed3a022a591
Step 22/22 : RUN echo "shared_preload_libraries='citus'" >> /var/lib/postgresql/data/postgresql.conf
 ---> Using cache
 ---> 641f0f13dfbc
Successfully built 641f0f13dfbc
Successfully tagged postgres15_postgis:latest

Запустим создание скриптов импорта страны в PostgreSQL и прогуляемся пока идет обработка данных.

java -jar target/osm-to-pgsnapshot-schema-ng-1.0-SNAPSHOT.jar -source_pbf ~/dev/map/russia/russia-latest.osm.pbf

[ 0:00] Started osmium add-locations-to-ways
[ 0:00]   osmium version 1.14.0
[ 0:00]   libosmium version 2.18.0
[ 0:00] Command line options and default settings:
[ 0:00]   input options:
[ 0:00]     file names: 
[ 0:00]       russia-latest.osm.pbf
[ 0:00]     file format: 
[ 0:00]   output options:
[ 0:00]     file name: russia-latest_loc_ways.pbf
[ 0:00]     file format: pbf,pbf_compression=none
[ 0:00]     generator: osmium/1.14.0
[ 0:00]     overwrite: no
[ 0:00]     fsync: no
[ 0:00]   other options:
[ 0:00]     index type (for positive ids): sparse_mem_array
[ 0:00]     index type (for negative ids): flex_mem
[ 0:00]     keep untagged nodes: no
[ 0:00]     keep nodes that are relation members: yes
[ 0:00] 
[ 0:00] Getting all nodes referenced from relations...
[ 0:07] Found 235618 nodes referenced from relations.
[ 0:07] Copying input file 'russia-latest.osm.pbf'...
[ 3:35] About 7496 MBytes used for node location index (in main memory or on disk).
[ 3:35] Peak memory used: 12912 MBytes
[ 3:35] Done.

0
1000
2000
3000
4000
5000
6000
6514  time 1518199
diff between total and processing 832295
total thread time 6072174
total processing time 5239879
total save time 84687
total waiting for save time 579228
thread max time 7837
processing max time 6984
nodes 6762201
ways 44097997
relations 1235952
relation members 8777120
multipolygon count 979411
0	[-32768,2264)	223686596	35032
1	[2264,2816)	213732124	552
2	[2816,2856)	219987210	40
3	[2856,2960)	156168751	104
4	[2960,2992)	172148136	32
5	[2992,3232)	260126595	240
6	[3232,4112)	137826462	880
7	[4112,4120)	184407214	8
8	[4120,4128)	189251117	8
9	[4128,4160)	223143034	32
10	[4160,4224)	133327564	64
11	[4224,4232)	204303214	8
12	[4232,4256)	192178700	24
13	[4256,4264)	214051598	8
14	[4264,4272)	275871148	8
15	[4272,4288)	125759335	16
16	[4288,4296)	172650197	8
17	[4296,4304)	52116013	8
18	[4304,4312)	191276060	8
19	[4312,4320)	239054216	8
20	[4320,4336)	98879479	16
21	[4336,4352)	245786444	16
22	[4352,4360)	336846936	8
23	[4360,4376)	184211034	16
24	[4376,4400)	158857057	24
25	[4400,4448)	189496376	48
26	[4448,4480)	125389911	32
27	[4480,4488)	287456806	8
28	[4488,4496)	363713739	8
29	[4496,4504)	288260853	8
30	[4504,4512)	247687615	8
31	[4512,4520)	131910793	8
32	[4520,4528)	467445230	8
33	[4528,5312)	201585787	784
34	[5312,5448)	206621417	136
35	[5448,5992)	222735757	544
36	[5992,8264)	149254791	2272
37	[8264,8288)	123129770	24
38	[8288,8296)	142560308	8
39	[8296,8448)	226948699	152
40	[8448,8512)	173030011	64
41	[8512,8544)	186339613	32
42	[8544,9520)	200430480	976
43	[9520,11272)	186597946	1752
44	[11272,11376)	209553454	104
45	[11376,11584)	180465079	208
46	[11584,11592)	208428382	8
47	[11592,11600)	119997071	8
48	[11600,11608)	296924640	8
49	[11608,11632)	187265852	24
50	[11632,11912)	206055256	280
51	[11912,32695)	216983504	20783
52 52 202.9214495

[ 0:00] Started osmium export
[ 0:00]   osmium version 1.14.0
[ 0:00]   libosmium version 2.18.0
[ 0:00] Command line options and default settings:
[ 0:00]   input options:
[ 0:00]     file name: russia-latest.osm.pbf
[ 0:00]     file format: 
[ 0:00]   output options:
[ 0:00]     file name: russia-latest_loc_ways/multipolygon/source.tsv
[ 0:00]     file format: pg
[ 0:00]     overwrite: no
[ 0:00]     fsync: yes
[ 0:00]   attributes:
[ 0:00]     type:      @type
[ 0:00]     id:        @id
[ 0:00]     version:   (omitted)
[ 0:00]     changeset: (omitted)
[ 0:00]     timestamp: (omitted)
[ 0:00]     uid:       (omitted)
[ 0:00]     user:      (omitted)
[ 0:00]     way_nodes: (omitted)
[ 0:00]   output format options:
[ 0:00]     tags_type = hstore
[ 0:00]   linear tags: none
[ 0:00]   area tags:   one of the following:
[ 0:00]     @type=relation
[ 0:00]   other options:
[ 0:00]     index type: sparse_mem_array
[ 0:00]     add unique IDs: no
[ 0:00]     keep untagged features: no
[ 0:00] 
[ 0:00] Create table with something like this:
[ 0:00] CREATE EXTENSION IF NOT EXISTS hstore;
[ 0:00] CREATE TABLE osmdata (
[ 0:00]     geom      GEOMETRY, -- or GEOGRAPHY
[ 0:00]     osm_type  TEXT,
[ 0:00]     osm_id    BIGINT,
[ 0:00]     tags      hstore
[ 0:00] );
[ 0:00] Then load data with something like this:
[ 0:00] \copy osmdata FROM 'russia-latest_loc_ways/multipolygon/source.tsv'
[ 0:00] 
[ 0:00] First pass (of two) through input file (reading relations)...
[ 0:14] First pass done.
[ 0:14] Second pass (of two) through input file...
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
Geometry error: Could not build area geometry
[ 6:05] About 7496 MBytes used for node location index (in main memory or on disk).
[ 6:05] Second pass done.
[ 6:05] Wrote 1043739 features.
[ 6:05] Encountered 489 errors.
[ 6:05] Peak memory used: 13448 MBytes
[ 6:05] Done.

cat /home/acc/dev/map/russia/russia-latest_loc_ways/multipolygon/source.tsv | grep $'\trelation\t' | split -l 244853 - /home/acc/dev/map/russia/russia-latest_loc_ways/multipolygon/multipolygon_


Объем всех данных после обработки 62,2 GB включает в себя и исходные данные russia-latest.osm.pbf 3,5 GB, обогащенные координатами пути в файле russia-latest_loc_ways.pbf 5,7 GB, эти же данные разделенные на файлы отдельных блоков 5,7 GB.

Файлы для импорта в PostgreSQL это 3638 файлов в 7 директориях общим объемом 47,4 GB:

~/dev/map/russia/russia-latest_loc_ways$ tree .
.
├── import_related_metadata
│   ├── osm_file_block_content.tsv
│   ├── osm_file_block.tsv
│   └── osm_file_statistics.tsv
├── multipolygon
│   ├── multipolygon_aa
│   ├── multipolygon_ab
│   ├── multipolygon_ac
│   ├── multipolygon_ad
│   └── multipolygon_ae
├── nodes
│   ├── 00001.tsv
│   ├── 00002.tsv
│   ├── 00004.tsv
│   ├── 00005.tsv
│   ├── 00011.tsv
│   ├── 00016.tsv
│   ├── 00020.tsv
│   ├── 00021.tsv
│   ├── 00024.tsv
│   ├── 00025.tsv
│   ├── 00026.tsv
│   ├── 00027.tsv
│   ├── 00028.tsv
│   ├── 00030.tsv
│   ├── 00050.tsv
│   ├── 00051.tsv
│   ├── 00052.tsv
│   ├── 00130.tsv
│   ├── 00132.tsv
│   ├── 00140.tsv
│   ├── 00144.tsv
│   ├── 00146.tsv
│   ├── 00147.tsv
│   ├── 00150.tsv
│   ├── 00154.tsv
│   ├── 00155.tsv
│   ├── 00156.tsv
│   ├── 00158.tsv
│   ├── 00160.tsv
│   ├── 00162.tsv
│   ├── 00163.tsv
│   ├── 00164.tsv
│   ├── 00166.tsv
│   ├── 00168.tsv
│   ├── 00169.tsv
│   ├── 00173.tsv
│   ├── 00178.tsv
│   ├── 00180.tsv
│   ├── 00182.tsv
│   ├── 00210.tsv
│   ├── 00228.tsv
│   ├── 00240.tsv
│   ├── 00244.tsv
│   ├── 00245.tsv
│   ├── 00246.tsv
│   ├── 00258.tsv
│   ├── 00272.tsv
│   ├── 00273.tsv
│   ├── 00276.tsv
│   ├── 00277.tsv
│   ├── 00283.tsv
│   ├── 00286.tsv
│   ├── 00290.tsv
│   ├── 00294.tsv
│   ├── 00304.tsv
│   ├── 00305.tsv
│   ├── 00306.tsv
│   ├── 00308.tsv
│   ├── 00309.tsv
│   ├── 00310.tsv
│   ├── 00384.tsv
│   ├── 00385.tsv
│   ├── 00386.tsv
│   ├── 00387.tsv
│   ├── 00388.tsv
│   ├── 00390.tsv
│   ├── 00392.tsv
│   ├── 00394.tsv
│   ├── 00396.tsv
│   ├── 00398.tsv
│   ├── 00404.tsv
│   ├── 00405.tsv
│   ├── 00406.tsv
│   ├── 00409.tsv
│   ├── 00412.tsv
│   ├── 00413.tsv
│   ├── 00421.tsv
│   ├── 00426.tsv
│   ├── 00428.tsv
│   ├── 00430.tsv
│   ├── 00432.tsv
│   ├── 00433.tsv
│   ├── 00435.tsv
│   ├── 00436.tsv
│   ├── 00438.tsv
│   ├── 01024.tsv
│   ├── 01025.tsv
│   ├── 01026.tsv
│   ├── 01028.tsv
│   ├── 01029.tsv
│   ├── 01030.tsv
│   ├── 01040.tsv
│   ├── 01041.tsv
│   ├── 01042.tsv
│   ├── 01043.tsv
│   ├── 01045.tsv
│   ├── 01046.tsv
│   ├── 01048.tsv
│   ├── 01050.tsv
│   ├── 01051.tsv
│   ├── 01054.tsv
│   ├── 01058.tsv
│   ├── 01073.tsv
│   ├── 01075.tsv
│   ├── 01077.tsv
│   ├── 01110.tsv
│   ├── 01113.tsv
│   ├── 01115.tsv
│   ├── 01152.tsv
│   ├── 01153.tsv
│   ├── 01154.tsv
│   ├── 01155.tsv
│   ├── 01156.tsv
│   ├── 01157.tsv
│   ├── 01158.tsv
│   ├── 01161.tsv
│   ├── 01162.tsv
│   ├── 01163.tsv
│   ├── 01164.tsv
│   ├── 01165.tsv
│   ├── 01166.tsv
│   ├── 01168.tsv
│   ├── 01169.tsv
│   ├── 01170.tsv
│   ├── 01171.tsv
│   ├── 01172.tsv
│   ├── 01173.tsv
│   ├── 01174.tsv
│   ├── 01176.tsv
│   ├── 01177.tsv
│   ├── 01178.tsv
│   ├── 01179.tsv
│   ├── 01180.tsv
│   ├── 01181.tsv
│   ├── 01182.tsv
│   ├── 01184.tsv
│   ├── 01185.tsv
│   ├── 01186.tsv
│   ├── 01187.tsv
│   ├── 01188.tsv
│   ├── 01189.tsv
│   ├── 01190.tsv
│   ├── 01192.tsv
│   ├── 01193.tsv
│   ├── 01194.tsv
│   ├── 01195.tsv
│   ├── 01196.tsv
│   ├── 01197.tsv
│   ├── 01198.tsv
│   ├── 01200.tsv
│   ├── 01201.tsv
│   ├── 01202.tsv
│   ├── 01203.tsv
│   ├── 01204.tsv
│   ├── 01205.tsv
│   ├── 01206.tsv
│   ├── 01216.tsv
│   ├── 01217.tsv
│   ├── 01218.tsv
│   ├── 01219.tsv
│   ├── 01220.tsv
│   ├── 01221.tsv
│   ├── 01222.tsv
│   ├── 01224.tsv
│   ├── 01225.tsv
│   ├── 01226.tsv
│   ├── 01227.tsv
│   ├── 01228.tsv
│   ├── 01229.tsv
│   ├── 01230.tsv
│   ├── 01232.tsv
│   ├── 01233.tsv
│   ├── 01234.tsv
│   ├── 01235.tsv
│   ├── 01236.tsv
│   ├── 01237.tsv
│   ├── 01240.tsv
│   ├── 01242.tsv
│   ├── 01243.tsv
│   ├── 01244.tsv
│   ├── 01245.tsv
│   ├── 01246.tsv
│   ├── 01250.tsv
│   ├── 01251.tsv
│   ├── 01254.tsv
│   ├── 01257.tsv
│   ├── 01258.tsv
│   ├── 01259.tsv
│   ├── 01264.tsv
│   ├── 01265.tsv
│   ├── 01266.tsv
│   ├── 01267.tsv
│   ├── 01268.tsv
│   ├── 01269.tsv
│   ├── 01270.tsv
│   ├── 01284.tsv
│   ├── 01286.tsv
│   ├── 01296.tsv
│   ├── 01297.tsv
│   ├── 01298.tsv
│   ├── 01300.tsv
│   ├── 01301.tsv
│   ├── 01302.tsv
│   ├── 01306.tsv
│   ├── 01312.tsv
│   ├── 01313.tsv
│   ├── 01314.tsv
│   ├── 01315.tsv
│   ├── 01316.tsv
│   ├── 01317.tsv
│   ├── 01318.tsv
│   ├── 01328.tsv
│   ├── 01329.tsv
│   ├── 01330.tsv
│   ├── 01331.tsv
│   ├── 01332.tsv
│   ├── 01333.tsv
│   ├── 01334.tsv
│   ├── 01408.tsv
│   ├── 01409.tsv
│   ├── 01410.tsv
│   ├── 01411.tsv
│   ├── 01412.tsv
│   ├── 01413.tsv
│   ├── 01416.tsv
│   ├── 01417.tsv
│   ├── 01418.tsv
│   ├── 01419.tsv
│   ├── 01420.tsv
│   ├── 01421.tsv
│   ├── 01422.tsv
│   ├── 01425.tsv
│   ├── 01426.tsv
│   ├── 01427.tsv
│   ├── 01428.tsv
│   ├── 01429.tsv
│   ├── 01430.tsv
│   ├── 01432.tsv
│   ├── 01433.tsv
│   ├── 01434.tsv
│   ├── 01435.tsv
│   ├── 01436.tsv
│   ├── 01437.tsv
│   ├── 01440.tsv
│   ├── 01441.tsv
│   ├── 01442.tsv
│   ├── 01444.tsv
│   ├── 01445.tsv
│   ├── 01446.tsv
│   ├── 01448.tsv
│   ├── 01449.tsv
│   ├── 01450.tsv
│   ├── 01451.tsv
│   ├── 01452.tsv
│   ├── 01454.tsv
│   ├── 01457.tsv
│   ├── 01458.tsv
│   ├── 01459.tsv
│   ├── 01461.tsv
│   ├── 01462.tsv
│   ├── 02176.tsv
│   ├── 02178.tsv
│   ├── 02179.tsv
│   ├── 02195.tsv
│   ├── 02200.tsv
│   ├── 02203.tsv
│   ├── 02204.tsv
│   ├── 02206.tsv
│   ├── 02248.tsv
│   ├── 02249.tsv
│   ├── 02250.tsv
│   ├── 02251.tsv
│   ├── 02252.tsv
│   ├── 02253.tsv
│   ├── 02264.tsv
│   ├── 02265.tsv
│   ├── 02266.tsv
│   ├── 02267.tsv
│   ├── 02269.tsv
│   ├── 02280.tsv
│   ├── 02283.tsv
│   ├── 02560.tsv
│   ├── 02561.tsv
│   ├── 02562.tsv
│   ├── 02563.tsv
│   ├── 02564.tsv
│   ├── 02565.tsv
│   ├── 02566.tsv
│   ├── 02568.tsv
│   ├── 02569.tsv
│   ├── 02570.tsv
│   ├── 02571.tsv
│   ├── 02572.tsv
│   ├── 02573.tsv
│   ├── 02574.tsv
│   ├── 02576.tsv
│   ├── 02577.tsv
│   ├── 02578.tsv
│   ├── 02579.tsv
│   ├── 02580.tsv
│   ├── 02581.tsv
│   ├── 02582.tsv
│   ├── 02584.tsv
│   ├── 02585.tsv
│   ├── 02586.tsv
│   ├── 02587.tsv
│   ├── 02588.tsv
│   ├── 02589.tsv
│   ├── 02590.tsv
│   ├── 02592.tsv
│   ├── 02593.tsv
│   ├── 02594.tsv
│   ├── 02595.tsv
│   ├── 02596.tsv
│   ├── 02597.tsv
│   ├── 02598.tsv
│   ├── 02600.tsv
│   ├── 02601.tsv
│   ├── 02602.tsv
│   ├── 02603.tsv
│   ├── 02604.tsv
│   ├── 02605.tsv
│   ├── 02606.tsv
│   ├── 02608.tsv
│   ├── 02609.tsv
│   ├── 02610.tsv
│   ├── 02611.tsv
│   ├── 02612.tsv
│   ├── 02613.tsv
│   ├── 02614.tsv
│   ├── 02624.tsv
│   ├── 02625.tsv
│   ├── 02626.tsv
│   ├── 02627.tsv
│   ├── 02628.tsv
│   ├── 02629.tsv
│   ├── 02630.tsv
│   ├── 02632.tsv
│   ├── 02633.tsv
│   ├── 02634.tsv
│   ├── 02635.tsv
│   ├── 02636.tsv
│   ├── 02637.tsv
│   ├── 02638.tsv
│   ├── 02640.tsv
│   ├── 02642.tsv
│   ├── 02643.tsv
│   ├── 02644.tsv
│   ├── 02645.tsv
│   ├── 02646.tsv
│   ├── 02648.tsv
│   ├── 02649.tsv
│   ├── 02650.tsv
│   ├── 02651.tsv
│   ├── 02652.tsv
│   ├── 02653.tsv
│   ├── 02657.tsv
│   ├── 02658.tsv
│   ├── 02659.tsv
│   ├── 02660.tsv
│   ├── 02661.tsv
│   ├── 02665.tsv
│   ├── 02668.tsv
│   ├── 02669.tsv
│   ├── 02670.tsv
│   ├── 02672.tsv
│   ├── 02673.tsv
│   ├── 02674.tsv
│   ├── 02675.tsv
│   ├── 02676.tsv
│   ├── 02677.tsv
│   ├── 02678.tsv
│   ├── 02688.tsv
│   ├── 02689.tsv
│   ├── 02690.tsv
│   ├── 02691.tsv
│   ├── 02692.tsv
│   ├── 02693.tsv
│   ├── 02694.tsv
│   ├── 02696.tsv
│   ├── 02697.tsv
│   ├── 02698.tsv
│   ├── 02699.tsv
│   ├── 02700.tsv
│   ├── 02701.tsv
│   ├── 02702.tsv
│   ├── 02704.tsv
│   ├── 02705.tsv
│   ├── 02706.tsv
│   ├── 02707.tsv
│   ├── 02708.tsv
│   ├── 02709.tsv
│   ├── 02710.tsv
│   ├── 02712.tsv
│   ├── 02713.tsv
│   ├── 02714.tsv
│   ├── 02715.tsv
│   ├── 02716.tsv
│   ├── 02717.tsv
│   ├── 02718.tsv
│   ├── 02720.tsv
│   ├── 02721.tsv
│   ├── 02722.tsv
│   ├── 02723.tsv
│   ├── 02724.tsv
│   ├── 02725.tsv
│   ├── 02726.tsv
│   ├── 02728.tsv
│   ├── 02730.tsv
│   ├── 02731.tsv
│   ├── 02732.tsv
│   ├── 02733.tsv
│   ├── 02734.tsv
│   ├── 02736.tsv
│   ├── 02737.tsv
│   ├── 02738.tsv
│   ├── 02739.tsv
│   ├── 02740.tsv
│   ├── 02741.tsv
│   ├── 02742.tsv
│   ├── 02752.tsv
│   ├── 02753.tsv
│   ├── 02754.tsv
│   ├── 02755.tsv
│   ├── 02757.tsv
│   ├── 02758.tsv
│   ├── 02760.tsv
│   ├── 02761.tsv
│   ├── 02763.tsv
│   ├── 02764.tsv
│   ├── 02765.tsv
│   ├── 02766.tsv
│   ├── 02768.tsv
│   ├── 02769.tsv
│   ├── 02770.tsv
│   ├── 02771.tsv
│   ├── 02772.tsv
│   ├── 02773.tsv
│   ├── 02774.tsv
│   ├── 02776.tsv
│   ├── 02777.tsv
│   ├── 02778.tsv
│   ├── 02779.tsv
│   ├── 02780.tsv
│   ├── 02781.tsv
│   ├── 02782.tsv
│   ├── 02784.tsv
│   ├── 02785.tsv
│   ├── 02786.tsv
│   ├── 02787.tsv
│   ├── 02789.tsv
│   ├── 02790.tsv
│   ├── 02795.tsv
│   ├── 02796.tsv
│   ├── 02797.tsv
│   ├── 02798.tsv
│   ├── 02800.tsv
│   ├── 02801.tsv
│   ├── 02802.tsv
│   ├── 02803.tsv
│   ├── 02804.tsv
│   ├── 02805.tsv
│   ├── 02806.tsv
│   ├── 02816.tsv
│   ├── 02817.tsv
│   ├── 02818.tsv
│   ├── 02819.tsv
│   ├── 02820.tsv
│   ├── 02821.tsv
│   ├── 02822.tsv
│   ├── 02824.tsv
│   ├── 02825.tsv
│   ├── 02826.tsv
│   ├── 02827.tsv
│   ├── 02828.tsv
│   ├── 02829.tsv
│   ├── 02830.tsv
│   ├── 02832.tsv
│   ├── 02833.tsv
│   ├── 02834.tsv
│   ├── 02835.tsv
│   ├── 02836.tsv
│   ├── 02837.tsv
│   ├── 02838.tsv
│   ├── 02840.tsv
│   ├── 02841.tsv
│   ├── 02842.tsv
│   ├── 02843.tsv
│   ├── 02844.tsv
│   ├── 02845.tsv
│   ├── 02846.tsv
│   ├── 02848.tsv
│   ├── 02849.tsv
│   ├── 02850.tsv
│   ├── 02851.tsv
│   ├── 02852.tsv
│   ├── 02853.tsv
│   ├── 02854.tsv
│   ├── 02856.tsv
│   ├── 02857.tsv
│   ├── 02858.tsv
│   ├── 02859.tsv
│   ├── 02860.tsv
│   ├── 02861.tsv
│   ├── 02862.tsv
│   ├── 02864.tsv
│   ├── 02865.tsv
│   ├── 02866.tsv
│   ├── 02867.tsv
│   ├── 02868.tsv
│   ├── 02869.tsv
│   ├── 02870.tsv
│   ├── 02880.tsv
│   ├── 02881.tsv
│   ├── 02882.tsv
│   ├── 02883.tsv
│   ├── 02884.tsv
│   ├── 02885.tsv
│   ├── 02886.tsv
│   ├── 02888.tsv
│   ├── 02889.tsv
│   ├── 02890.tsv
│   ├── 02891.tsv
│   ├── 02892.tsv
│   ├── 02893.tsv
│   ├── 02894.tsv
│   ├── 02896.tsv
│   ├── 02897.tsv
│   ├── 02898.tsv
│   ├── 02899.tsv
│   ├── 02900.tsv
│   ├── 02901.tsv
│   ├── 02902.tsv
│   ├── 02904.tsv
│   ├── 02905.tsv
│   ├── 02906.tsv
│   ├── 02907.tsv
│   ├── 02908.tsv
│   ├── 02909.tsv
│   ├── 02910.tsv
│   ├── 02912.tsv
│   ├── 02913.tsv
│   ├── 02914.tsv
│   ├── 02915.tsv
│   ├── 02916.tsv
│   ├── 02917.tsv
│   ├── 02918.tsv
│   ├── 02920.tsv
│   ├── 02921.tsv
│   ├── 02922.tsv
│   ├── 02923.tsv
│   ├── 02924.tsv
│   ├── 02926.tsv
│   ├── 02928.tsv
│   ├── 02929.tsv
│   ├── 02930.tsv
│   ├── 02931.tsv
│   ├── 02932.tsv
│   ├── 02933.tsv
│   ├── 02934.tsv
│   ├── 02944.tsv
│   ├── 02945.tsv
│   ├── 02946.tsv
│   ├── 02947.tsv
│   ├── 02948.tsv
│   ├── 02949.tsv
│   ├── 02950.tsv
│   ├── 02952.tsv
│   ├── 02953.tsv
│   ├── 02954.tsv
│   ├── 02955.tsv
│   ├── 02956.tsv
│   ├── 02957.tsv
│   ├── 02958.tsv
│   ├── 02960.tsv
│   ├── 02961.tsv
│   ├── 02962.tsv
│   ├── 02963.tsv
│   ├── 02964.tsv
│   ├── 02965.tsv
│   ├── 02966.tsv
│   ├── 02968.tsv
│   ├── 02969.tsv
│   ├── 02970.tsv
│   ├── 02971.tsv
│   ├── 02972.tsv
│   ├── 02973.tsv
│   ├── 02974.tsv
│   ├── 02976.tsv
│   ├── 02977.tsv
│   ├── 02978.tsv
│   ├── 02979.tsv
│   ├── 02980.tsv
│   ├── 02981.tsv
│   ├── 02982.tsv
│   ├── 02984.tsv
│   ├── 02985.tsv
│   ├── 02986.tsv
│   ├── 02987.tsv
│   ├── 02988.tsv
│   ├── 02989.tsv
│   ├── 02990.tsv
│   ├── 02992.tsv
│   ├── 02993.tsv
│   ├── 02994.tsv
│   ├── 02995.tsv
│   ├── 02996.tsv
│   ├── 02997.tsv
│   ├── 02998.tsv
│   ├── 03220.tsv
│   ├── 03236.tsv
│   ├── 03238.tsv
│   ├── 03248.tsv
│   ├── 03250.tsv
│   ├── 03251.tsv
│   ├── 03253.tsv
│   ├── 03254.tsv
│   ├── 03456.tsv
│   ├── 03457.tsv
│   ├── 03458.tsv
│   ├── 03459.tsv
│   ├── 03462.tsv
│   ├── 03464.tsv
│   ├── 03465.tsv
│   ├── 03466.tsv
│   ├── 03467.tsv
│   ├── 03468.tsv
│   ├── 03470.tsv
│   ├── 03472.tsv
│   ├── 03473.tsv
│   ├── 03474.tsv
│   ├── 03475.tsv
│   ├── 03476.tsv
│   ├── 03477.tsv
│   ├── 03478.tsv
│   ├── 03480.tsv
│   ├── 03481.tsv
│   ├── 03482.tsv
│   ├── 03484.tsv
│   ├── 03485.tsv
│   ├── 03486.tsv
│   ├── 03491.tsv
│   ├── 03494.tsv
│   ├── 03504.tsv
│   ├── 03505.tsv
│   ├── 03506.tsv
│   ├── 03507.tsv
│   ├── 03508.tsv
│   ├── 03510.tsv
│   ├── 04096.tsv
│   ├── 04097.tsv
│   ├── 04098.tsv
│   ├── 04099.tsv
│   ├── 04100.tsv
│   ├── 04101.tsv
│   ├── 04102.tsv
│   ├── 04104.tsv
│   ├── 04105.tsv
│   ├── 04106.tsv
│   ├── 04107.tsv
│   ├── 04108.tsv
│   ├── 04109.tsv
│   ├── 04110.tsv
│   ├── 04112.tsv
│   ├── 04113.tsv
│   ├── 04114.tsv
│   ├── 04115.tsv
│   ├── 04116.tsv
│   ├── 04117.tsv
│   ├── 04118.tsv
│   ├── 04120.tsv
│   ├── 04121.tsv
│   ├── 04122.tsv
│   ├── 04123.tsv
│   ├── 04124.tsv
│   ├── 04125.tsv
│   ├── 04126.tsv
│   ├── 04128.tsv
│   ├── 04129.tsv
│   ├── 04130.tsv
│   ├── 04131.tsv
│   ├── 04132.tsv
│   ├── 04133.tsv
│   ├── 04134.tsv
│   ├── 04136.tsv
│   ├── 04137.tsv
│   ├── 04138.tsv
│   ├── 04139.tsv
│   ├── 04140.tsv
│   ├── 04141.tsv
│   ├── 04142.tsv
│   ├── 04144.tsv
│   ├── 04145.tsv
│   ├── 04146.tsv
│   ├── 04147.tsv
│   ├── 04148.tsv
│   ├── 04149.tsv
│   ├── 04150.tsv
│   ├── 04160.tsv
│   ├── 04161.tsv
│   ├── 04162.tsv
│   ├── 04163.tsv
│   ├── 04164.tsv
│   ├── 04165.tsv
│   ├── 04166.tsv
│   ├── 04168.tsv
│   ├── 04169.tsv
│   ├── 04170.tsv
│   ├── 04171.tsv
│   ├── 04172.tsv
│   ├── 04173.tsv
│   ├── 04174.tsv
│   ├── 04176.tsv
│   ├── 04177.tsv
│   ├── 04178.tsv
│   ├── 04179.tsv
│   ├── 04180.tsv
│   ├── 04181.tsv
│   ├── 04182.tsv
│   ├── 04184.tsv
│   ├── 04185.tsv
│   ├── 04186.tsv
│   ├── 04187.tsv
│   ├── 04188.tsv
│   ├── 04189.tsv
│   ├── 04190.tsv
│   ├── 04192.tsv
│   ├── 04193.tsv
│   ├── 04194.tsv
│   ├── 04195.tsv
│   ├── 04196.tsv
│   ├── 04197.tsv
│   ├── 04198.tsv
│   ├── 04200.tsv
│   ├── 04201.tsv
│   ├── 04202.tsv
│   ├── 04203.tsv
│   ├── 04204.tsv
│   ├── 04205.tsv
│   ├── 04206.tsv
│   ├── 04208.tsv
│   ├── 04209.tsv
│   ├── 04210.tsv
│   ├── 04211.tsv
│   ├── 04212.tsv
│   ├── 04213.tsv
│   ├── 04214.tsv
│   ├── 04224.tsv
│   ├── 04225.tsv
│   ├── 04226.tsv
│   ├── 04227.tsv
│   ├── 04228.tsv
│   ├── 04229.tsv
│   ├── 04230.tsv
│   ├── 04232.tsv
│   ├── 04233.tsv
│   ├── 04234.tsv
│   ├── 04235.tsv
│   ├── 04236.tsv
│   ├── 04237.tsv
│   ├── 04238.tsv
│   ├── 04240.tsv
│   ├── 04241.tsv
│   ├── 04244.tsv
│   ├── 04245.tsv
│   ├── 04246.tsv
│   ├── 04248.tsv
│   ├── 04249.tsv
│   ├── 04251.tsv
│   ├── 04252.tsv
│   ├── 04253.tsv
│   ├── 04256.tsv
│   ├── 04257.tsv
│   ├── 04258.tsv
│   ├── 04259.tsv
│   ├── 04260.tsv
│   ├── 04261.tsv
│   ├── 04262.tsv
│   ├── 04264.tsv
│   ├── 04265.tsv
│   ├── 04266.tsv
│   ├── 04267.tsv
│   ├── 04268.tsv
│   ├── 04269.tsv
│   ├── 04270.tsv
│   ├── 04272.tsv
│   ├── 04273.tsv
│   ├── 04274.tsv
│   ├── 04275.tsv
│   ├── 04276.tsv
│   ├── 04277.tsv
│   ├── 04278.tsv
│   ├── 04288.tsv
│   ├── 04289.tsv
│   ├── 04290.tsv
│   ├── 04291.tsv
│   ├── 04292.tsv
│   ├── 04293.tsv
│   ├── 04294.tsv
│   ├── 04296.tsv
│   ├── 04297.tsv
│   ├── 04298.tsv
│   ├── 04299.tsv
│   ├── 04300.tsv
│   ├── 04301.tsv
│   ├── 04302.tsv
│   ├── 04304.tsv
│   ├── 04305.tsv
│   ├── 04306.tsv
│   ├── 04307.tsv
│   ├── 04308.tsv
│   ├── 04309.tsv
│   ├── 04310.tsv
│   ├── 04312.tsv
│   ├── 04313.tsv
│   ├── 04314.tsv
│   ├── 04315.tsv
│   ├── 04316.tsv
│   ├── 04317.tsv
│   ├── 04318.tsv
│   ├── 04320.tsv
│   ├── 04321.tsv
│   ├── 04322.tsv
│   ├── 04323.tsv
│   ├── 04324.tsv
│   ├── 04325.tsv
│   ├── 04326.tsv
│   ├── 04328.tsv
│   ├── 04329.tsv
│   ├── 04330.tsv
│   ├── 04331.tsv
│   ├── 04332.tsv
│   ├── 04333.tsv
│   ├── 04334.tsv
│   ├── 04336.tsv
│   ├── 04337.tsv
│   ├── 04338.tsv
│   ├── 04339.tsv
│   ├── 04340.tsv
│   ├── 04341.tsv
│   ├── 04342.tsv
│   ├── 04352.tsv
│   ├── 04353.tsv
│   ├── 04354.tsv
│   ├── 04355.tsv
│   ├── 04356.tsv
│   ├── 04357.tsv
│   ├── 04358.tsv
│   ├── 04360.tsv
│   ├── 04361.tsv
│   ├── 04362.tsv
│   ├── 04363.tsv
│   ├── 04364.tsv
│   ├── 04365.tsv
│   ├── 04366.tsv
│   ├── 04368.tsv
│   ├── 04369.tsv
│   ├── 04370.tsv
│   ├── 04371.tsv
│   ├── 04372.tsv
│   ├── 04373.tsv
│   ├── 04374.tsv
│   ├── 04376.tsv
│   ├── 04377.tsv
│   ├── 04378.tsv
│   ├── 04379.tsv
│   ├── 04380.tsv
│   ├── 04381.tsv
│   ├── 04382.tsv
│   ├── 04386.tsv
│   ├── 04387.tsv
│   ├── 04390.tsv
│   ├── 04392.tsv
│   ├── 04393.tsv
│   ├── 04394.tsv
│   ├── 04395.tsv
│   ├── 04397.tsv
│   ├── 04400.tsv
│   ├── 04401.tsv
│   ├── 04402.tsv
│   ├── 04403.tsv
│   ├── 04404.tsv
│   ├── 04405.tsv
│   ├── 04406.tsv
│   ├── 04416.tsv
│   ├── 04417.tsv
│   ├── 04418.tsv
│   ├── 04419.tsv
│   ├── 04420.tsv
│   ├── 04421.tsv
│   ├── 04422.tsv
│   ├── 04424.tsv
│   ├── 04425.tsv
│   ├── 04426.tsv
│   ├── 04427.tsv
│   ├── 04428.tsv
│   ├── 04430.tsv
│   ├── 04432.tsv
│   ├── 04433.tsv
│   ├── 04434.tsv
│   ├── 04435.tsv
│   ├── 04436.tsv
│   ├── 04437.tsv
│   ├── 04438.tsv
│   ├── 04440.tsv
│   ├── 04441.tsv
│   ├── 04442.tsv
│   ├── 04443.tsv
│   ├── 04444.tsv
│   ├── 04445.tsv
│   ├── 04446.tsv
│   ├── 04448.tsv
│   ├── 04449.tsv
│   ├── 04450.tsv
│   ├── 04451.tsv
│   ├── 04452.tsv
│   ├── 04453.tsv
│   ├── 04454.tsv
│   ├── 04457.tsv
│   ├── 04458.tsv
│   ├── 04460.tsv
│   ├── 04462.tsv
│   ├── 04464.tsv
│   ├── 04465.tsv
│   ├── 04466.tsv
│   ├── 04467.tsv
│   ├── 04468.tsv
│   ├── 04469.tsv
│   ├── 04470.tsv
│   ├── 04480.tsv
│   ├── 04481.tsv
│   ├── 04482.tsv
│   ├── 04483.tsv
│   ├── 04484.tsv
│   ├── 04485.tsv
│   ├── 04486.tsv
│   ├── 04488.tsv
│   ├── 04489.tsv
│   ├── 04490.tsv
│   ├── 04491.tsv
│   ├── 04492.tsv
│   ├── 04493.tsv
│   ├── 04494.tsv
│   ├── 04496.tsv
│   ├── 04497.tsv
│   ├── 04498.tsv
│   ├── 04499.tsv
│   ├── 04500.tsv
│   ├── 04501.tsv
│   ├── 04502.tsv
│   ├── 04504.tsv
│   ├── 04505.tsv
│   ├── 04506.tsv
│   ├── 04507.tsv
│   ├── 04508.tsv
│   ├── 04509.tsv
│   ├── 04510.tsv
│   ├── 04512.tsv
│   ├── 04513.tsv
│   ├── 04514.tsv
│   ├── 04515.tsv
│   ├── 04516.tsv
│   ├── 04517.tsv
│   ├── 04518.tsv
│   ├── 04520.tsv
│   ├── 04521.tsv
│   ├── 04522.tsv
│   ├── 04523.tsv
│   ├── 04524.tsv
│   ├── 04525.tsv
│   ├── 04526.tsv
│   ├── 04528.tsv
│   ├── 04529.tsv
│   ├── 04530.tsv
│   ├── 04531.tsv
│   ├── 04532.tsv
│   ├── 04533.tsv
│   ├── 04534.tsv
│   ├── 05120.tsv
│   ├── 05121.tsv
│   ├── 05122.tsv
│   ├── 05123.tsv
│   ├── 05124.tsv
│   ├── 05125.tsv
│   ├── 05126.tsv
│   ├── 05128.tsv
│   ├── 05129.tsv
│   ├── 05131.tsv
│   ├── 05132.tsv
│   ├── 05133.tsv
│   ├── 05134.tsv
│   ├── 05136.tsv
│   ├── 05137.tsv
│   ├── 05138.tsv
│   ├── 05139.tsv
│   ├── 05140.tsv
│   ├── 05141.tsv
│   ├── 05144.tsv
│   ├── 05145.tsv
│   ├── 05146.tsv
│   ├── 05147.tsv
│   ├── 05148.tsv
│   ├── 05149.tsv
│   ├── 05150.tsv
│   ├── 05153.tsv
│   ├── 05154.tsv
│   ├── 05155.tsv
│   ├── 05156.tsv
│   ├── 05157.tsv
│   ├── 05158.tsv
│   ├── 05160.tsv
│   ├── 05161.tsv
│   ├── 05163.tsv
│   ├── 05164.tsv
│   ├── 05165.tsv
│   ├── 05166.tsv
│   ├── 05168.tsv
│   ├── 05169.tsv
│   ├── 05170.tsv
│   ├── 05171.tsv
│   ├── 05172.tsv
│   ├── 05173.tsv
│   ├── 05174.tsv
│   ├── 05184.tsv
│   ├── 05185.tsv
│   ├── 05186.tsv
│   ├── 05187.tsv
│   ├── 05188.tsv
│   ├── 05189.tsv
│   ├── 05190.tsv
│   ├── 05192.tsv
│   ├── 05193.tsv
│   ├── 05196.tsv
│   ├── 05197.tsv
│   ├── 05198.tsv
│   ├── 05200.tsv
│   ├── 05201.tsv
│   ├── 05202.tsv
│   ├── 05204.tsv
│   ├── 05205.tsv
│   ├── 05206.tsv
│   ├── 05208.tsv
│   ├── 05216.tsv
│   ├── 05217.tsv
│   ├── 05218.tsv
│   ├── 05219.tsv
│   ├── 05220.tsv
│   ├── 05221.tsv
│   ├── 05222.tsv
│   ├── 05224.tsv
│   ├── 05225.tsv
│   ├── 05226.tsv
│   ├── 05227.tsv
│   ├── 05228.tsv
│   ├── 05229.tsv
│   ├── 05230.tsv
│   ├── 05232.tsv
│   ├── 05233.tsv
│   ├── 05234.tsv
│   ├── 05235.tsv
│   ├── 05236.tsv
│   ├── 05237.tsv
│   ├── 05238.tsv
│   ├── 05249.tsv
│   ├── 05253.tsv
│   ├── 05256.tsv
│   ├── 05257.tsv
│   ├── 05258.tsv
│   ├── 05259.tsv
│   ├── 05260.tsv
│   ├── 05261.tsv
│   ├── 05262.tsv
│   ├── 05277.tsv
│   ├── 05281.tsv
│   ├── 05283.tsv
│   ├── 05288.tsv
│   ├── 05289.tsv
│   ├── 05290.tsv
│   ├── 05291.tsv
│   ├── 05292.tsv
│   ├── 05293.tsv
│   ├── 05294.tsv
│   ├── 05312.tsv
│   ├── 05313.tsv
│   ├── 05314.tsv
│   ├── 05315.tsv
│   ├── 05316.tsv
│   ├── 05317.tsv
│   ├── 05318.tsv
│   ├── 05320.tsv
│   ├── 05322.tsv
│   ├── 05323.tsv
│   ├── 05324.tsv
│   ├── 05325.tsv
│   ├── 05326.tsv
│   ├── 05328.tsv
│   ├── 05329.tsv
│   ├── 05330.tsv
│   ├── 05331.tsv
│   ├── 05332.tsv
│   ├── 05333.tsv
│   ├── 05334.tsv
│   ├── 05336.tsv
│   ├── 05337.tsv
│   ├── 05338.tsv
│   ├── 05339.tsv
│   ├── 05340.tsv
│   ├── 05341.tsv
│   ├── 05342.tsv
│   ├── 05344.tsv
│   ├── 05345.tsv
│   ├── 05346.tsv
│   ├── 05347.tsv
│   ├── 05348.tsv
│   ├── 05349.tsv
│   ├── 05350.tsv
│   ├── 05352.tsv
│   ├── 05353.tsv
│   ├── 05354.tsv
│   ├── 05355.tsv
│   ├── 05356.tsv
│   ├── 05358.tsv
│   ├── 05360.tsv
│   ├── 05361.tsv
│   ├── 05362.tsv
│   ├── 05363.tsv
│   ├── 05364.tsv
│   ├── 05365.tsv
│   ├── 05366.tsv
│   ├── 05376.tsv
│   ├── 05377.tsv
│   ├── 05378.tsv
│   ├── 05379.tsv
│   ├── 05380.tsv
│   ├── 05381.tsv
│   ├── 05382.tsv
│   ├── 05384.tsv
│   ├── 05385.tsv
│   ├── 05386.tsv
│   ├── 05387.tsv
│   ├── 05388.tsv
│   ├── 05389.tsv
│   ├── 05390.tsv
│   ├── 05392.tsv
│   ├── 05393.tsv
│   ├── 05394.tsv
│   ├── 05395.tsv
│   ├── 05396.tsv
│   ├── 05397.tsv
│   ├── 05398.tsv
│   ├── 05400.tsv
│   ├── 05401.tsv
│   ├── 05402.tsv
│   ├── 05403.tsv
│   ├── 05404.tsv
│   ├── 05405.tsv
│   ├── 05406.tsv
│   ├── 05408.tsv
│   ├── 05409.tsv
│   ├── 05410.tsv
│   ├── 05411.tsv
│   ├── 05412.tsv
│   ├── 05413.tsv
│   ├── 05414.tsv
│   ├── 05416.tsv
│   ├── 05417.tsv
│   ├── 05418.tsv
│   ├── 05419.tsv
│   ├── 05420.tsv
│   ├── 05421.tsv
│   ├── 05422.tsv
│   ├── 05424.tsv
│   ├── 05425.tsv
│   ├── 05426.tsv
│   ├── 05427.tsv
│   ├── 05428.tsv
│   ├── 05429.tsv
│   ├── 05430.tsv
│   ├── 05440.tsv
│   ├── 05441.tsv
│   ├── 05442.tsv
│   ├── 05443.tsv
│   ├── 05444.tsv
│   ├── 05445.tsv
│   ├── 05446.tsv
│   ├── 05448.tsv
│   ├── 05449.tsv
│   ├── 05450.tsv
│   ├── 05451.tsv
│   ├── 05452.tsv
│   ├── 05453.tsv
│   ├── 05454.tsv
│   ├── 05456.tsv
│   ├── 05457.tsv
│   ├── 05458.tsv
│   ├── 05459.tsv
│   ├── 05460.tsv
│   ├── 05461.tsv
│   ├── 05462.tsv
│   ├── 05464.tsv
│   ├── 05465.tsv
│   ├── 05466.tsv
│   ├── 05467.tsv
│   ├── 05468.tsv
│   ├── 05469.tsv
│   ├── 05470.tsv
│   ├── 05472.tsv
│   ├── 05473.tsv
│   ├── 05474.tsv
│   ├── 05475.tsv
│   ├── 05476.tsv
│   ├── 05477.tsv
│   ├── 05478.tsv
│   ├── 05481.tsv
│   ├── 05482.tsv
│   ├── 05483.tsv
│   ├── 05484.tsv
│   ├── 05485.tsv
│   ├── 05486.tsv
│   ├── 05488.tsv
│   ├── 05489.tsv
│   ├── 05490.tsv
│   ├── 05491.tsv
│   ├── 05492.tsv
│   ├── 05493.tsv
│   ├── 05494.tsv
│   ├── 05504.tsv
│   ├── 05505.tsv
│   ├── 05506.tsv
│   ├── 05507.tsv
│   ├── 05508.tsv
│   ├── 05509.tsv
│   ├── 05510.tsv
│   ├── 05516.tsv
│   ├── 05517.tsv
│   ├── 05518.tsv
│   ├── 05525.tsv
│   ├── 05532.tsv
│   ├── 05536.tsv
│   ├── 05537.tsv
│   ├── 05538.tsv
│   ├── 05539.tsv
│   ├── 05540.tsv
│   ├── 05541.tsv
│   ├── 05542.tsv
│   ├── 05544.tsv
│   ├── 05545.tsv
│   ├── 05546.tsv
│   ├── 05547.tsv
│   ├── 05548.tsv
│   ├── 05549.tsv
│   ├── 05550.tsv
│   ├── 05552.tsv
│   ├── 05553.tsv
│   ├── 05555.tsv
│   ├── 05556.tsv
│   ├── 05557.tsv
│   ├── 05633.tsv
│   ├── 05634.tsv
│   ├── 05636.tsv
│   ├── 05637.tsv
│   ├── 05638.tsv
│   ├── 05640.tsv
│   ├── 05641.tsv
│   ├── 05643.tsv
│   ├── 05644.tsv
│   ├── 05646.tsv
│   ├── 05648.tsv
│   ├── 05650.tsv
│   ├── 05652.tsv
│   ├── 05653.tsv
│   ├── 05654.tsv
│   ├── 05664.tsv
│   ├── 05665.tsv
│   ├── 05666.tsv
│   ├── 05667.tsv
│   ├── 05668.tsv
│   ├── 05669.tsv
│   ├── 05670.tsv
│   ├── 05680.tsv
│   ├── 05681.tsv
│   ├── 05682.tsv
│   ├── 05683.tsv
│   ├── 05684.tsv
│   ├── 05685.tsv
│   ├── 05686.tsv
│   ├── 05702.tsv
│   ├── 05712.tsv
│   ├── 05714.tsv
│   ├── 05715.tsv
│   ├── 05716.tsv
│   ├── 05718.tsv
│   ├── 05720.tsv
│   ├── 05721.tsv
│   ├── 05726.tsv
│   ├── 05728.tsv
│   ├── 05730.tsv
│   ├── 05732.tsv
│   ├── 05733.tsv
│   ├── 05734.tsv
│   ├── 05744.tsv
│   ├── 05745.tsv
│   ├── 05746.tsv
│   ├── 05747.tsv
│   ├── 05749.tsv
│   ├── 05769.tsv
│   ├── 05792.tsv
│   ├── 05793.tsv
│   ├── 05794.tsv
│   ├── 05797.tsv
│   ├── 05798.tsv
│   ├── 05808.tsv
│   ├── 05809.tsv
│   ├── 05810.tsv
│   ├── 05813.tsv
│   ├── 05860.tsv
│   ├── 05862.tsv
│   ├── 05870.tsv
│   ├── 05877.tsv
│   ├── 05888.tsv
│   ├── 05889.tsv
│   ├── 05890.tsv
│   ├── 05891.tsv
│   ├── 05892.tsv
│   ├── 05893.tsv
│   ├── 05894.tsv
│   ├── 05896.tsv
│   ├── 05897.tsv
│   ├── 05898.tsv
│   ├── 05899.tsv
│   ├── 05900.tsv
│   ├── 05901.tsv
│   ├── 05904.tsv
│   ├── 05905.tsv
│   ├── 05908.tsv
│   ├── 05909.tsv
│   ├── 05910.tsv
│   ├── 05913.tsv
│   ├── 05914.tsv
│   ├── 05915.tsv
│   ├── 05916.tsv
│   ├── 05917.tsv
│   ├── 05921.tsv
│   ├── 05922.tsv
│   ├── 05923.tsv
│   ├── 05925.tsv
│   ├── 05926.tsv
│   ├── 05928.tsv
│   ├── 05929.tsv
│   ├── 05930.tsv
│   ├── 05931.tsv
│   ├── 05932.tsv
│   ├── 05933.tsv
│   ├── 05934.tsv
│   ├── 05936.tsv
│   ├── 05937.tsv
│   ├── 05938.tsv
│   ├── 05939.tsv
│   ├── 05940.tsv
│   ├── 05941.tsv
│   ├── 05942.tsv
│   ├── 05952.tsv
│   ├── 05953.tsv
│   ├── 05954.tsv
│   ├── 05955.tsv
│   ├── 05956.tsv
│   ├── 05957.tsv
│   ├── 05958.tsv
│   ├── 05961.tsv
│   ├── 05968.tsv
│   ├── 05969.tsv
│   ├── 05970.tsv
│   ├── 05972.tsv
│   ├── 05973.tsv
│   ├── 05974.tsv
│   ├── 05980.tsv
│   ├── 05984.tsv
│   ├── 05985.tsv
│   ├── 05986.tsv
│   ├── 05987.tsv
│   ├── 05988.tsv
│   ├── 05989.tsv
│   ├── 05990.tsv
│   ├── 05992.tsv
│   ├── 05993.tsv
│   ├── 05994.tsv
│   ├── 05995.tsv
│   ├── 05996.tsv
│   ├── 05997.tsv
│   ├── 05998.tsv
│   ├── 06000.tsv
│   ├── 06001.tsv
│   ├── 06002.tsv
│   ├── 06003.tsv
│   ├── 06004.tsv
│   ├── 06005.tsv
│   ├── 06006.tsv
│   ├── 06021.tsv
│   ├── 06024.tsv
│   ├── 06025.tsv
│   ├── 06027.tsv
│   ├── 06029.tsv
│   ├── 06057.tsv
│   ├── 06059.tsv
│   ├── 06070.tsv
│   ├── 07753.tsv
│   ├── 07754.tsv
│   ├── 07755.tsv
│   ├── 07768.tsv
│   ├── 07769.tsv
│   ├── 07770.tsv
│   ├── 07773.tsv
│   ├── 07776.tsv
│   ├── 07780.tsv
│   ├── 07781.tsv
│   ├── 07782.tsv
│   ├── 07788.tsv
│   ├── 07789.tsv
│   ├── 07881.tsv
│   ├── 07885.tsv
│   ├── 07913.tsv
│   ├── 07915.tsv
│   ├── 07948.tsv
│   ├── 07949.tsv
│   ├── 07950.tsv
│   ├── 08000.tsv
│   ├── 08001.tsv
│   ├── 08002.tsv
│   ├── 08003.tsv
│   ├── 08005.tsv
│   ├── 08006.tsv
│   ├── 08008.tsv
│   ├── 08009.tsv
│   ├── 08010.tsv
│   ├── 08013.tsv
│   ├── 08020.tsv
│   ├── 08021.tsv
│   ├── 08024.tsv
│   ├── 08025.tsv
│   ├── 08026.tsv
│   ├── 08028.tsv
│   ├── 08030.tsv
│   ├── 08036.tsv
│   ├── 08037.tsv
│   ├── 08040.tsv
│   ├── 08041.tsv
│   ├── 08042.tsv
│   ├── 08043.tsv
│   ├── 08044.tsv
│   ├── 08045.tsv
│   ├── 08046.tsv
│   ├── 08048.tsv
│   ├── 08049.tsv
│   ├── 08050.tsv
│   ├── 08051.tsv
│   ├── 08257.tsv
│   ├── 08260.tsv
│   ├── 08261.tsv
│   ├── 08264.tsv
│   ├── 08265.tsv
│   ├── 08268.tsv
│   ├── 08269.tsv
│   ├── 08288.tsv
│   ├── 08289.tsv
│   ├── 08290.tsv
│   ├── 08291.tsv
│   ├── 08292.tsv
│   ├── 08293.tsv
│   ├── 08294.tsv
│   ├── 08296.tsv
│   ├── 08297.tsv
│   ├── 08298.tsv
│   ├── 08299.tsv
│   ├── 08300.tsv
│   ├── 08301.tsv
│   ├── 08302.tsv
│   ├── 08448.tsv
│   ├── 08449.tsv
│   ├── 08452.tsv
│   ├── 08453.tsv
│   ├── 08480.tsv
│   ├── 08481.tsv
│   ├── 08482.tsv
│   ├── 08483.tsv
│   ├── 08484.tsv
│   ├── 08485.tsv
│   ├── 08486.tsv
│   ├── 08488.tsv
│   ├── 08489.tsv
│   ├── 08490.tsv
│   ├── 08492.tsv
│   ├── 08493.tsv
│   ├── 08494.tsv
│   ├── 08497.tsv
│   ├── 08501.tsv
│   ├── 08512.tsv
│   ├── 08513.tsv
│   ├── 08515.tsv
│   ├── 08516.tsv
│   ├── 08517.tsv
│   ├── 08518.tsv
│   ├── 08520.tsv
│   ├── 08521.tsv
│   ├── 08522.tsv
│   ├── 08523.tsv
│   ├── 08524.tsv
│   ├── 08525.tsv
│   ├── 08526.tsv
│   ├── 08536.tsv
│   ├── 08537.tsv
│   ├── 08541.tsv
│   ├── 08544.tsv
│   ├── 08545.tsv
│   ├── 08546.tsv
│   ├── 08547.tsv
│   ├── 08548.tsv
│   ├── 08549.tsv
│   ├── 08550.tsv
│   ├── 08552.tsv
│   ├── 08553.tsv
│   ├── 08554.tsv
│   ├── 08555.tsv
│   ├── 08556.tsv
│   ├── 08557.tsv
│   ├── 08558.tsv
│   ├── 08561.tsv
│   ├── 08564.tsv
│   ├── 08565.tsv
│   ├── 08776.tsv
│   ├── 08793.tsv
│   ├── 09317.tsv
│   ├── 09472.tsv
│   ├── 09473.tsv
│   ├── 09474.tsv
│   ├── 09475.tsv
│   ├── 09476.tsv
│   ├── 09477.tsv
│   ├── 09478.tsv
│   ├── 09484.tsv
│   ├── 09485.tsv
│   ├── 09486.tsv
│   ├── 09492.tsv
│   ├── 09493.tsv
│   ├── 09501.tsv
│   ├── 09504.tsv
│   ├── 09505.tsv
│   ├── 09506.tsv
│   ├── 09507.tsv
│   ├── 09508.tsv
│   ├── 09509.tsv
│   ├── 09510.tsv
│   ├── 09512.tsv
│   ├── 09513.tsv
│   ├── 09514.tsv
│   ├── 09515.tsv
│   ├── 09516.tsv
│   ├── 09517.tsv
│   ├── 09518.tsv
│   ├── 09520.tsv
│   ├── 09521.tsv
│   ├── 09522.tsv
│   ├── 09523.tsv
│   ├── 09524.tsv
│   ├── 09525.tsv
│   ├── 09526.tsv
│   ├── 09536.tsv
│   ├── 09537.tsv
│   ├── 09538.tsv
│   ├── 09539.tsv
│   ├── 09540.tsv
│   ├── 09541.tsv
│   ├── 09542.tsv
│   ├── 09544.tsv
│   ├── 09545.tsv
│   ├── 09546.tsv
│   ├── 09547.tsv
│   ├── 09548.tsv
│   ├── 09549.tsv
│   ├── 09550.tsv
│   ├── 09552.tsv
│   ├── 09553.tsv
│   ├── 09556.tsv
│   ├── 09557.tsv
│   ├── 09561.tsv
│   ├── 09564.tsv
│   ├── 09565.tsv
│   ├── 09568.tsv
│   ├── 09569.tsv
│   ├── 09570.tsv
│   ├── 09571.tsv
│   ├── 09572.tsv
│   ├── 09573.tsv
│   ├── 09574.tsv
│   ├── 09576.tsv
│   ├── 09577.tsv
│   ├── 09578.tsv
│   ├── 09579.tsv
│   ├── 09580.tsv
│   ├── 09581.tsv
│   ├── 09582.tsv
│   ├── 09584.tsv
│   ├── 09585.tsv
│   ├── 09586.tsv
│   ├── 09587.tsv
│   ├── 09588.tsv
│   ├── 09589.tsv
│   ├── 09590.tsv
│   ├── 11272.tsv
│   ├── 11273.tsv
│   ├── 11276.tsv
│   ├── 11277.tsv
│   ├── 11296.tsv
│   ├── 11297.tsv
│   ├── 11300.tsv
│   ├── 11302.tsv
│   ├── 11304.tsv
│   ├── 11305.tsv
│   ├── 11307.tsv
│   ├── 11308.tsv
│   ├── 11309.tsv
│   ├── 11328.tsv
│   ├── 11329.tsv
│   ├── 11330.tsv
│   ├── 11332.tsv
│   ├── 11334.tsv
│   ├── 11345.tsv
│   ├── 11347.tsv
│   ├── 11348.tsv
│   ├── 11349.tsv
│   ├── 11360.tsv
│   ├── 11361.tsv
│   ├── 11362.tsv
│   ├── 11363.tsv
│   ├── 11364.tsv
│   ├── 11365.tsv
│   ├── 11366.tsv
│   ├── 11370.tsv
│   ├── 11374.tsv
│   ├── 11376.tsv
│   ├── 11377.tsv
│   ├── 11378.tsv
│   ├── 11379.tsv
│   ├── 11380.tsv
│   ├── 11381.tsv
│   ├── 11382.tsv
│   ├── 11500.tsv
│   ├── 11520.tsv
│   ├── 11521.tsv
│   ├── 11523.tsv
│   ├── 11524.tsv
│   ├── 11525.tsv
│   ├── 11529.tsv
│   ├── 11545.tsv
│   ├── 11549.tsv
│   ├── 11554.tsv
│   ├── 11560.tsv
│   ├── 11561.tsv
│   ├── 11564.tsv
│   ├── 11565.tsv
│   ├── 11573.tsv
│   ├── 11584.tsv
│   ├── 11585.tsv
│   ├── 11586.tsv
│   ├── 11587.tsv
│   ├── 11588.tsv
│   ├── 11589.tsv
│   ├── 11590.tsv
│   ├── 11592.tsv
│   ├── 11593.tsv
│   ├── 11594.tsv
│   ├── 11595.tsv
│   ├── 11596.tsv
│   ├── 11597.tsv
│   ├── 11598.tsv
│   ├── 11600.tsv
│   ├── 11601.tsv
│   ├── 11602.tsv
│   ├── 11603.tsv
│   ├── 11604.tsv
│   ├── 11605.tsv
│   ├── 11606.tsv
│   ├── 11608.tsv
│   ├── 11609.tsv
│   ├── 11610.tsv
│   ├── 11611.tsv
│   ├── 11612.tsv
│   ├── 11613.tsv
│   ├── 11614.tsv
│   ├── 11617.tsv
│   ├── 11618.tsv
│   ├── 11619.tsv
│   ├── 11624.tsv
│   ├── 11625.tsv
│   ├── 11626.tsv
│   ├── 11627.tsv
│   ├── 11628.tsv
│   ├── 11629.tsv
│   ├── 11630.tsv
│   ├── 11632.tsv
│   ├── 11633.tsv
│   ├── 11634.tsv
│   ├── 11635.tsv
│   ├── 11636.tsv
│   ├── 11637.tsv
│   ├── 11638.tsv
│   ├── 11784.tsv
│   ├── 11786.tsv
│   ├── 11789.tsv
│   ├── 11794.tsv
│   ├── 11801.tsv
│   ├── 11803.tsv
│   ├── 11805.tsv
│   ├── 11875.tsv
│   ├── 11888.tsv
│   ├── 11912.tsv
│   ├── 11913.tsv
│   ├── 11914.tsv
│   ├── 11915.tsv
│   ├── 11916.tsv
│   ├── 11917.tsv
│   ├── 11928.tsv
│   ├── 11929.tsv
│   ├── 11931.tsv
│   ├── 11933.tsv
│   ├── 11937.tsv
│   ├── 11938.tsv
│   ├── 11939.tsv
│   ├── 11944.tsv
│   ├── 11945.tsv
│   ├── 11948.tsv
│   ├── 11949.tsv
│   ├── 11950.tsv
│   ├── 11952.tsv
│   ├── 11957.tsv
│   ├── 11958.tsv
│   ├── 11968.tsv
│   ├── 11969.tsv
│   ├── 11970.tsv
│   ├── 11971.tsv
│   ├── 11976.tsv
│   ├── 11977.tsv
│   ├── 11978.tsv
│   ├── 11979.tsv
│   ├── 11980.tsv
│   ├── 11981.tsv
│   ├── 11982.tsv
│   ├── 11984.tsv
│   ├── 11985.tsv
│   ├── 11986.tsv
│   ├── 11987.tsv
│   ├── 11989.tsv
│   ├── 11992.tsv
│   ├── 11993.tsv
│   ├── 11994.tsv
│   ├── 11995.tsv
│   ├── 11996.tsv
│   ├── 11997.tsv
│   ├── 11998.tsv
│   ├── 12004.tsv
│   ├── 12006.tsv
│   ├── 12009.tsv
│   ├── 12010.tsv
│   ├── 12011.tsv
│   ├── 12013.tsv
│   ├── 12018.tsv
│   ├── 12020.tsv
│   ├── 12021.tsv
│   ├── 12022.tsv
│   ├── 12179.tsv
│   ├── 12520.tsv
│   ├── 12522.tsv
│   ├── 12524.tsv
│   ├── 12613.tsv
│   ├── 12622.tsv
│   ├── 12637.tsv
│   ├── 12641.tsv
│   ├── 12645.tsv
│   ├── 12648.tsv
│   ├── 12649.tsv
│   ├── 12650.tsv
│   ├── 12652.tsv
│   ├── 12653.tsv
│   ├── 12654.tsv
│   └── 12956.tsv
├── relations
│   ├── 00000.tsv
│   └── 00001.tsv
├── sql
│   ├── nodes_import_000.sql
│   ├── nodes_import_001.sql
│   ├── nodes_import_002.sql
│   ├── nodes_import_003.sql
│   ├── ways_import_000.sql
│   ├── ways_import_001.sql
│   ├── ways_import_002.sql
│   ├── ways_import_003.sql
│   ├── y_multipoly_aa.sql
│   ├── y_multipoly_ab.sql
│   ├── y_multipoly_ac.sql
│   ├── y_multipoly_ad.sql
│   └── y_multipoly_ae.sql
├── static
│   ├── database_after_init.sql
│   ├── database_init.sql
│   ├── h3_poly.tsv.gz
│   ├── multipolygon.sql
│   ├── multipolygon_tables.sql
│   └── osmium_export.json
└── ways
    ├── 00001.tsv
    ├── 00002.tsv
    ├── 00003.tsv
    ├── 00016.tsv
    ├── 00017.tsv
    ├── 00019.tsv
    ├── 00020.tsv
    ├── 00021.tsv
    ├── 00022.tsv
    ├── 00024.tsv
    ├── 00025.tsv
    ├── 00026.tsv
    ├── 00027.tsv
    ├── 00028.tsv
    ├── 00029.tsv
    ├── 00030.tsv
    ├── 00041.tsv
    ├── 00042.tsv
    ├── 00044.tsv
    ├── 00048.tsv
    ├── 00049.tsv
    ├── 00050.tsv
    ├── 00051.tsv
    ├── 00052.tsv
    ├── 00054.tsv
    ├── 00131.tsv
    ├── 00132.tsv
    ├── 00133.tsv
    ├── 00137.tsv
    ├── 00139.tsv
    ├── 00140.tsv
    ├── 00141.tsv
    ├── 00144.tsv
    ├── 00145.tsv
    ├── 00146.tsv
    ├── 00147.tsv
    ├── 00148.tsv
    ├── 00150.tsv
    ├── 00152.tsv
    ├── 00154.tsv
    ├── 00155.tsv
    ├── 00156.tsv
    ├── 00158.tsv
    ├── 00160.tsv
    ├── 00162.tsv
    ├── 00163.tsv
    ├── 00164.tsv
    ├── 00165.tsv
    ├── 00166.tsv
    ├── 00168.tsv
    ├── 00169.tsv
    ├── 00170.tsv
    ├── 00173.tsv
    ├── 00174.tsv
    ├── 00178.tsv
    ├── 00180.tsv
    ├── 00182.tsv
    ├── 00210.tsv
    ├── 00214.tsv
    ├── 00228.tsv
    ├── 00230.tsv
    ├── 00240.tsv
    ├── 00244.tsv
    ├── 00245.tsv
    ├── 00246.tsv
    ├── 00258.tsv
    ├── 00269.tsv
    ├── 00272.tsv
    ├── 00273.tsv
    ├── 00274.tsv
    ├── 00275.tsv
    ├── 00277.tsv
    ├── 00282.tsv
    ├── 00286.tsv
    ├── 00288.tsv
    ├── 00289.tsv
    ├── 00290.tsv
    ├── 00291.tsv
    ├── 00292.tsv
    ├── 00293.tsv
    ├── 00294.tsv
    ├── 00304.tsv
    ├── 00305.tsv
    ├── 00308.tsv
    ├── 00309.tsv
    ├── 00310.tsv
    ├── 00336.tsv
    ├── 00339.tsv
    ├── 00340.tsv
    ├── 00384.tsv
    ├── 00385.tsv
    ├── 00386.tsv
    ├── 00387.tsv
    ├── 00388.tsv
    ├── 00390.tsv
    ├── 00392.tsv
    ├── 00393.tsv
    ├── 00394.tsv
    ├── 00396.tsv
    ├── 00397.tsv
    ├── 00398.tsv
    ├── 00400.tsv
    ├── 00401.tsv
    ├── 00404.tsv
    ├── 00405.tsv
    ├── 00406.tsv
    ├── 00409.tsv
    ├── 00412.tsv
    ├── 00413.tsv
    ├── 00417.tsv
    ├── 00424.tsv
    ├── 00425.tsv
    ├── 00426.tsv
    ├── 00427.tsv
    ├── 00428.tsv
    ├── 00429.tsv
    ├── 00430.tsv
    ├── 00433.tsv
    ├── 00434.tsv
    ├── 00435.tsv
    ├── 00436.tsv
    ├── 00437.tsv
    ├── 00438.tsv
    ├── 01024.tsv
    ├── 01025.tsv
    ├── 01026.tsv
    ├── 01028.tsv
    ├── 01029.tsv
    ├── 01030.tsv
    ├── 01036.tsv
    ├── 01040.tsv
    ├── 01041.tsv
    ├── 01042.tsv
    ├── 01043.tsv
    ├── 01045.tsv
    ├── 01046.tsv
    ├── 01048.tsv
    ├── 01050.tsv
    ├── 01051.tsv
    ├── 01054.tsv
    ├── 01058.tsv
    ├── 01066.tsv
    ├── 01067.tsv
    ├── 01070.tsv
    ├── 01073.tsv
    ├── 01074.tsv
    ├── 01075.tsv
    ├── 01077.tsv
    ├── 01113.tsv
    ├── 01115.tsv
    ├── 01152.tsv
    ├── 01153.tsv
    ├── 01154.tsv
    ├── 01155.tsv
    ├── 01156.tsv
    ├── 01157.tsv
    ├── 01158.tsv
    ├── 01160.tsv
    ├── 01161.tsv
    ├── 01162.tsv
    ├── 01163.tsv
    ├── 01164.tsv
    ├── 01165.tsv
    ├── 01166.tsv
    ├── 01168.tsv
    ├── 01169.tsv
    ├── 01170.tsv
    ├── 01171.tsv
    ├── 01172.tsv
    ├── 01173.tsv
    ├── 01174.tsv
    ├── 01176.tsv
    ├── 01177.tsv
    ├── 01178.tsv
    ├── 01179.tsv
    ├── 01180.tsv
    ├── 01181.tsv
    ├── 01182.tsv
    ├── 01184.tsv
    ├── 01185.tsv
    ├── 01186.tsv
    ├── 01187.tsv
    ├── 01188.tsv
    ├── 01189.tsv
    ├── 01190.tsv
    ├── 01192.tsv
    ├── 01193.tsv
    ├── 01194.tsv
    ├── 01195.tsv
    ├── 01196.tsv
    ├── 01197.tsv
    ├── 01198.tsv
    ├── 01200.tsv
    ├── 01201.tsv
    ├── 01202.tsv
    ├── 01203.tsv
    ├── 01204.tsv
    ├── 01205.tsv
    ├── 01206.tsv
    ├── 01216.tsv
    ├── 01217.tsv
    ├── 01218.tsv
    ├── 01219.tsv
    ├── 01220.tsv
    ├── 01221.tsv
    ├── 01222.tsv
    ├── 01224.tsv
    ├── 01225.tsv
    ├── 01226.tsv
    ├── 01227.tsv
    ├── 01228.tsv
    ├── 01229.tsv
    ├── 01230.tsv
    ├── 01232.tsv
    ├── 01233.tsv
    ├── 01234.tsv
    ├── 01235.tsv
    ├── 01236.tsv
    ├── 01237.tsv
    ├── 01238.tsv
    ├── 01240.tsv
    ├── 01241.tsv
    ├── 01242.tsv
    ├── 01243.tsv
    ├── 01244.tsv
    ├── 01245.tsv
    ├── 01246.tsv
    ├── 01250.tsv
    ├── 01251.tsv
    ├── 01254.tsv
    ├── 01257.tsv
    ├── 01258.tsv
    ├── 01259.tsv
    ├── 01264.tsv
    ├── 01265.tsv
    ├── 01266.tsv
    ├── 01267.tsv
    ├── 01268.tsv
    ├── 01269.tsv
    ├── 01270.tsv
    ├── 01284.tsv
    ├── 01286.tsv
    ├── 01296.tsv
    ├── 01297.tsv
    ├── 01298.tsv
    ├── 01300.tsv
    ├── 01301.tsv
    ├── 01302.tsv
    ├── 01312.tsv
    ├── 01313.tsv
    ├── 01314.tsv
    ├── 01315.tsv
    ├── 01316.tsv
    ├── 01317.tsv
    ├── 01318.tsv
    ├── 01328.tsv
    ├── 01329.tsv
    ├── 01330.tsv
    ├── 01331.tsv
    ├── 01332.tsv
    ├── 01333.tsv
    ├── 01334.tsv
    ├── 01408.tsv
    ├── 01409.tsv
    ├── 01410.tsv
    ├── 01411.tsv
    ├── 01412.tsv
    ├── 01413.tsv
    ├── 01414.tsv
    ├── 01416.tsv
    ├── 01417.tsv
    ├── 01418.tsv
    ├── 01419.tsv
    ├── 01420.tsv
    ├── 01421.tsv
    ├── 01422.tsv
    ├── 01424.tsv
    ├── 01425.tsv
    ├── 01426.tsv
    ├── 01427.tsv
    ├── 01428.tsv
    ├── 01429.tsv
    ├── 01430.tsv
    ├── 01432.tsv
    ├── 01433.tsv
    ├── 01434.tsv
    ├── 01435.tsv
    ├── 01436.tsv
    ├── 01437.tsv
    ├── 01438.tsv
    ├── 01440.tsv
    ├── 01441.tsv
    ├── 01442.tsv
    ├── 01443.tsv
    ├── 01444.tsv
    ├── 01445.tsv
    ├── 01446.tsv
    ├── 01448.tsv
    ├── 01449.tsv
    ├── 01450.tsv
    ├── 01451.tsv
    ├── 01452.tsv
    ├── 01454.tsv
    ├── 01456.tsv
    ├── 01457.tsv
    ├── 01458.tsv
    ├── 01459.tsv
    ├── 01460.tsv
    ├── 01461.tsv
    ├── 01462.tsv
    ├── 02203.tsv
    ├── 02248.tsv
    ├── 02249.tsv
    ├── 02250.tsv
    ├── 02251.tsv
    ├── 02252.tsv
    ├── 02253.tsv
    ├── 02264.tsv
    ├── 02265.tsv
    ├── 02266.tsv
    ├── 02267.tsv
    ├── 02269.tsv
    ├── 02283.tsv
    ├── 02560.tsv
    ├── 02561.tsv
    ├── 02562.tsv
    ├── 02563.tsv
    ├── 02564.tsv
    ├── 02565.tsv
    ├── 02566.tsv
    ├── 02568.tsv
    ├── 02569.tsv
    ├── 02570.tsv
    ├── 02571.tsv
    ├── 02572.tsv
    ├── 02573.tsv
    ├── 02574.tsv
    ├── 02576.tsv
    ├── 02577.tsv
    ├── 02578.tsv
    ├── 02579.tsv
    ├── 02580.tsv
    ├── 02581.tsv
    ├── 02582.tsv
    ├── 02584.tsv
    ├── 02585.tsv
    ├── 02586.tsv
    ├── 02587.tsv
    ├── 02588.tsv
    ├── 02589.tsv
    ├── 02590.tsv
    ├── 02592.tsv
    ├── 02593.tsv
    ├── 02594.tsv
    ├── 02595.tsv
    ├── 02596.tsv
    ├── 02597.tsv
    ├── 02598.tsv
    ├── 02600.tsv
    ├── 02601.tsv
    ├── 02602.tsv
    ├── 02603.tsv
    ├── 02604.tsv
    ├── 02605.tsv
    ├── 02606.tsv
    ├── 02608.tsv
    ├── 02609.tsv
    ├── 02610.tsv
    ├── 02611.tsv
    ├── 02612.tsv
    ├── 02613.tsv
    ├── 02614.tsv
    ├── 02624.tsv
    ├── 02625.tsv
    ├── 02626.tsv
    ├── 02627.tsv
    ├── 02628.tsv
    ├── 02629.tsv
    ├── 02630.tsv
    ├── 02632.tsv
    ├── 02633.tsv
    ├── 02634.tsv
    ├── 02635.tsv
    ├── 02636.tsv
    ├── 02637.tsv
    ├── 02638.tsv
    ├── 02640.tsv
    ├── 02641.tsv
    ├── 02642.tsv
    ├── 02643.tsv
    ├── 02644.tsv
    ├── 02645.tsv
    ├── 02646.tsv
    ├── 02648.tsv
    ├── 02649.tsv
    ├── 02650.tsv
    ├── 02651.tsv
    ├── 02652.tsv
    ├── 02653.tsv
    ├── 02654.tsv
    ├── 02656.tsv
    ├── 02657.tsv
    ├── 02658.tsv
    ├── 02659.tsv
    ├── 02660.tsv
    ├── 02661.tsv
    ├── 02662.tsv
    ├── 02664.tsv
    ├── 02665.tsv
    ├── 02666.tsv
    ├── 02667.tsv
    ├── 02668.tsv
    ├── 02669.tsv
    ├── 02670.tsv
    ├── 02672.tsv
    ├── 02673.tsv
    ├── 02674.tsv
    ├── 02675.tsv
    ├── 02676.tsv
    ├── 02677.tsv
    ├── 02678.tsv
    ├── 02688.tsv
    ├── 02689.tsv
    ├── 02690.tsv
    ├── 02691.tsv
    ├── 02692.tsv
    ├── 02693.tsv
    ├── 02694.tsv
    ├── 02696.tsv
    ├── 02697.tsv
    ├── 02698.tsv
    ├── 02699.tsv
    ├── 02700.tsv
    ├── 02701.tsv
    ├── 02702.tsv
    ├── 02704.tsv
    ├── 02705.tsv
    ├── 02706.tsv
    ├── 02707.tsv
    ├── 02708.tsv
    ├── 02709.tsv
    ├── 02710.tsv
    ├── 02712.tsv
    ├── 02713.tsv
    ├── 02714.tsv
    ├── 02715.tsv
    ├── 02716.tsv
    ├── 02717.tsv
    ├── 02718.tsv
    ├── 02720.tsv
    ├── 02721.tsv
    ├── 02722.tsv
    ├── 02723.tsv
    ├── 02724.tsv
    ├── 02725.tsv
    ├── 02726.tsv
    ├── 02728.tsv
    ├── 02729.tsv
    ├── 02730.tsv
    ├── 02731.tsv
    ├── 02732.tsv
    ├── 02733.tsv
    ├── 02734.tsv
    ├── 02736.tsv
    ├── 02737.tsv
    ├── 02738.tsv
    ├── 02739.tsv
    ├── 02740.tsv
    ├── 02741.tsv
    ├── 02742.tsv
    ├── 02752.tsv
    ├── 02753.tsv
    ├── 02754.tsv
    ├── 02755.tsv
    ├── 02756.tsv
    ├── 02757.tsv
    ├── 02758.tsv
    ├── 02760.tsv
    ├── 02761.tsv
    ├── 02762.tsv
    ├── 02763.tsv
    ├── 02764.tsv
    ├── 02765.tsv
    ├── 02766.tsv
    ├── 02768.tsv
    ├── 02769.tsv
    ├── 02770.tsv
    ├── 02771.tsv
    ├── 02772.tsv
    ├── 02773.tsv
    ├── 02774.tsv
    ├── 02776.tsv
    ├── 02777.tsv
    ├── 02778.tsv
    ├── 02779.tsv
    ├── 02780.tsv
    ├── 02781.tsv
    ├── 02782.tsv
    ├── 02784.tsv
    ├── 02785.tsv
    ├── 02786.tsv
    ├── 02787.tsv
    ├── 02788.tsv
    ├── 02789.tsv
    ├── 02790.tsv
    ├── 02792.tsv
    ├── 02793.tsv
    ├── 02794.tsv
    ├── 02795.tsv
    ├── 02796.tsv
    ├── 02797.tsv
    ├── 02798.tsv
    ├── 02800.tsv
    ├── 02801.tsv
    ├── 02802.tsv
    ├── 02803.tsv
    ├── 02804.tsv
    ├── 02805.tsv
    ├── 02806.tsv
    ├── 02816.tsv
    ├── 02817.tsv
    ├── 02818.tsv
    ├── 02819.tsv
    ├── 02820.tsv
    ├── 02821.tsv
    ├── 02822.tsv
    ├── 02824.tsv
    ├── 02825.tsv
    ├── 02826.tsv
    ├── 02827.tsv
    ├── 02828.tsv
    ├── 02829.tsv
    ├── 02830.tsv
    ├── 02832.tsv
    ├── 02833.tsv
    ├── 02834.tsv
    ├── 02835.tsv
    ├── 02836.tsv
    ├── 02837.tsv
    ├── 02838.tsv
    ├── 02840.tsv
    ├── 02841.tsv
    ├── 02842.tsv
    ├── 02843.tsv
    ├── 02844.tsv
    ├── 02845.tsv
    ├── 02846.tsv
    ├── 02848.tsv
    ├── 02849.tsv
    ├── 02850.tsv
    ├── 02851.tsv
    ├── 02852.tsv
    ├── 02853.tsv
    ├── 02854.tsv
    ├── 02856.tsv
    ├── 02857.tsv
    ├── 02858.tsv
    ├── 02859.tsv
    ├── 02860.tsv
    ├── 02861.tsv
    ├── 02862.tsv
    ├── 02864.tsv
    ├── 02865.tsv
    ├── 02866.tsv
    ├── 02867.tsv
    ├── 02868.tsv
    ├── 02869.tsv
    ├── 02870.tsv
    ├── 02880.tsv
    ├── 02881.tsv
    ├── 02882.tsv
    ├── 02883.tsv
    ├── 02884.tsv
    ├── 02885.tsv
    ├── 02886.tsv
    ├── 02888.tsv
    ├── 02889.tsv
    ├── 02890.tsv
    ├── 02891.tsv
    ├── 02892.tsv
    ├── 02893.tsv
    ├── 02894.tsv
    ├── 02896.tsv
    ├── 02897.tsv
    ├── 02898.tsv
    ├── 02899.tsv
    ├── 02900.tsv
    ├── 02901.tsv
    ├── 02902.tsv
    ├── 02904.tsv
    ├── 02905.tsv
    ├── 02906.tsv
    ├── 02907.tsv
    ├── 02908.tsv
    ├── 02909.tsv
    ├── 02910.tsv
    ├── 02912.tsv
    ├── 02913.tsv
    ├── 02914.tsv
    ├── 02915.tsv
    ├── 02916.tsv
    ├── 02917.tsv
    ├── 02918.tsv
    ├── 02920.tsv
    ├── 02921.tsv
    ├── 02922.tsv
    ├── 02923.tsv
    ├── 02924.tsv
    ├── 02926.tsv
    ├── 02928.tsv
    ├── 02929.tsv
    ├── 02930.tsv
    ├── 02931.tsv
    ├── 02932.tsv
    ├── 02933.tsv
    ├── 02934.tsv
    ├── 02944.tsv
    ├── 02945.tsv
    ├── 02946.tsv
    ├── 02947.tsv
    ├── 02948.tsv
    ├── 02949.tsv
    ├── 02950.tsv
    ├── 02952.tsv
    ├── 02953.tsv
    ├── 02954.tsv
    ├── 02955.tsv
    ├── 02956.tsv
    ├── 02957.tsv
    ├── 02958.tsv
    ├── 02960.tsv
    ├── 02961.tsv
    ├── 02962.tsv
    ├── 02963.tsv
    ├── 02964.tsv
    ├── 02965.tsv
    ├── 02966.tsv
    ├── 02968.tsv
    ├── 02969.tsv
    ├── 02970.tsv
    ├── 02971.tsv
    ├── 02972.tsv
    ├── 02973.tsv
    ├── 02974.tsv
    ├── 02976.tsv
    ├── 02977.tsv
    ├── 02978.tsv
    ├── 02979.tsv
    ├── 02980.tsv
    ├── 02981.tsv
    ├── 02982.tsv
    ├── 02984.tsv
    ├── 02985.tsv
    ├── 02986.tsv
    ├── 02987.tsv
    ├── 02988.tsv
    ├── 02989.tsv
    ├── 02990.tsv
    ├── 02992.tsv
    ├── 02993.tsv
    ├── 02994.tsv
    ├── 02995.tsv
    ├── 02996.tsv
    ├── 02997.tsv
    ├── 02998.tsv
    ├── 03236.tsv
    ├── 03250.tsv
    ├── 03254.tsv
    ├── 03456.tsv
    ├── 03457.tsv
    ├── 03458.tsv
    ├── 03459.tsv
    ├── 03460.tsv
    ├── 03462.tsv
    ├── 03464.tsv
    ├── 03465.tsv
    ├── 03466.tsv
    ├── 03468.tsv
    ├── 03470.tsv
    ├── 03472.tsv
    ├── 03473.tsv
    ├── 03474.tsv
    ├── 03475.tsv
    ├── 03476.tsv
    ├── 03477.tsv
    ├── 03478.tsv
    ├── 03480.tsv
    ├── 03481.tsv
    ├── 03484.tsv
    ├── 03485.tsv
    ├── 03486.tsv
    ├── 03492.tsv
    ├── 03494.tsv
    ├── 03504.tsv
    ├── 03505.tsv
    ├── 03506.tsv
    ├── 03507.tsv
    ├── 03508.tsv
    ├── 03510.tsv
    ├── 04096.tsv
    ├── 04097.tsv
    ├── 04098.tsv
    ├── 04099.tsv
    ├── 04100.tsv
    ├── 04101.tsv
    ├── 04102.tsv
    ├── 04104.tsv
    ├── 04105.tsv
    ├── 04106.tsv
    ├── 04107.tsv
    ├── 04108.tsv
    ├── 04109.tsv
    ├── 04110.tsv
    ├── 04112.tsv
    ├── 04113.tsv
    ├── 04114.tsv
    ├── 04115.tsv
    ├── 04116.tsv
    ├── 04117.tsv
    ├── 04118.tsv
    ├── 04120.tsv
    ├── 04121.tsv
    ├── 04122.tsv
    ├── 04123.tsv
    ├── 04124.tsv
    ├── 04125.tsv
    ├── 04126.tsv
    ├── 04128.tsv
    ├── 04129.tsv
    ├── 04130.tsv
    ├── 04131.tsv
    ├── 04132.tsv
    ├── 04133.tsv
    ├── 04134.tsv
    ├── 04136.tsv
    ├── 04137.tsv
    ├── 04138.tsv
    ├── 04139.tsv
    ├── 04140.tsv
    ├── 04141.tsv
    ├── 04142.tsv
    ├── 04144.tsv
    ├── 04145.tsv
    ├── 04146.tsv
    ├── 04147.tsv
    ├── 04148.tsv
    ├── 04149.tsv
    ├── 04150.tsv
    ├── 04160.tsv
    ├── 04161.tsv
    ├── 04162.tsv
    ├── 04163.tsv
    ├── 04164.tsv
    ├── 04165.tsv
    ├── 04166.tsv
    ├── 04168.tsv
    ├── 04169.tsv
    ├── 04170.tsv
    ├── 04171.tsv
    ├── 04172.tsv
    ├── 04173.tsv
    ├── 04174.tsv
    ├── 04176.tsv
    ├── 04177.tsv
    ├── 04178.tsv
    ├── 04179.tsv
    ├── 04180.tsv
    ├── 04181.tsv
    ├── 04182.tsv
    ├── 04184.tsv
    ├── 04185.tsv
    ├── 04186.tsv
    ├── 04187.tsv
    ├── 04188.tsv
    ├── 04189.tsv
    ├── 04190.tsv
    ├── 04192.tsv
    ├── 04193.tsv
    ├── 04194.tsv
    ├── 04195.tsv
    ├── 04196.tsv
    ├── 04197.tsv
    ├── 04198.tsv
    ├── 04200.tsv
    ├── 04201.tsv
    ├── 04202.tsv
    ├── 04203.tsv
    ├── 04204.tsv
    ├── 04205.tsv
    ├── 04206.tsv
    ├── 04208.tsv
    ├── 04209.tsv
    ├── 04210.tsv
    ├── 04211.tsv
    ├── 04212.tsv
    ├── 04213.tsv
    ├── 04214.tsv
    ├── 04224.tsv
    ├── 04225.tsv
    ├── 04226.tsv
    ├── 04227.tsv
    ├── 04228.tsv
    ├── 04229.tsv
    ├── 04230.tsv
    ├── 04232.tsv
    ├── 04233.tsv
    ├── 04234.tsv
    ├── 04235.tsv
    ├── 04236.tsv
    ├── 04237.tsv
    ├── 04238.tsv
    ├── 04240.tsv
    ├── 04241.tsv
    ├── 04244.tsv
    ├── 04245.tsv
    ├── 04246.tsv
    ├── 04248.tsv
    ├── 04249.tsv
    ├── 04251.tsv
    ├── 04252.tsv
    ├── 04253.tsv
    ├── 04256.tsv
    ├── 04257.tsv
    ├── 04258.tsv
    ├── 04259.tsv
    ├── 04260.tsv
    ├── 04261.tsv
    ├── 04262.tsv
    ├── 04264.tsv
    ├── 04265.tsv
    ├── 04266.tsv
    ├── 04267.tsv
    ├── 04268.tsv
    ├── 04269.tsv
    ├── 04270.tsv
    ├── 04272.tsv
    ├── 04273.tsv
    ├── 04274.tsv
    ├── 04275.tsv
    ├── 04276.tsv
    ├── 04277.tsv
    ├── 04278.tsv
    ├── 04288.tsv
    ├── 04289.tsv
    ├── 04290.tsv
    ├── 04291.tsv
    ├── 04292.tsv
    ├── 04293.tsv
    ├── 04294.tsv
    ├── 04296.tsv
    ├── 04297.tsv
    ├── 04298.tsv
    ├── 04299.tsv
    ├── 04300.tsv
    ├── 04301.tsv
    ├── 04302.tsv
    ├── 04304.tsv
    ├── 04305.tsv
    ├── 04306.tsv
    ├── 04307.tsv
    ├── 04308.tsv
    ├── 04309.tsv
    ├── 04310.tsv
    ├── 04312.tsv
    ├── 04313.tsv
    ├── 04314.tsv
    ├── 04315.tsv
    ├── 04316.tsv
    ├── 04317.tsv
    ├── 04318.tsv
    ├── 04320.tsv
    ├── 04321.tsv
    ├── 04322.tsv
    ├── 04323.tsv
    ├── 04324.tsv
    ├── 04325.tsv
    ├── 04326.tsv
    ├── 04328.tsv
    ├── 04329.tsv
    ├── 04330.tsv
    ├── 04331.tsv
    ├── 04332.tsv
    ├── 04333.tsv
    ├── 04334.tsv
    ├── 04336.tsv
    ├── 04337.tsv
    ├── 04338.tsv
    ├── 04339.tsv
    ├── 04340.tsv
    ├── 04341.tsv
    ├── 04342.tsv
    ├── 04352.tsv
    ├── 04353.tsv
    ├── 04354.tsv
    ├── 04355.tsv
    ├── 04356.tsv
    ├── 04357.tsv
    ├── 04358.tsv
    ├── 04360.tsv
    ├── 04361.tsv
    ├── 04362.tsv
    ├── 04363.tsv
    ├── 04364.tsv
    ├── 04365.tsv
    ├── 04366.tsv
    ├── 04368.tsv
    ├── 04369.tsv
    ├── 04370.tsv
    ├── 04371.tsv
    ├── 04372.tsv
    ├── 04373.tsv
    ├── 04374.tsv
    ├── 04376.tsv
    ├── 04377.tsv
    ├── 04378.tsv
    ├── 04379.tsv
    ├── 04380.tsv
    ├── 04381.tsv
    ├── 04382.tsv
    ├── 04386.tsv
    ├── 04387.tsv
    ├── 04392.tsv
    ├── 04393.tsv
    ├── 04394.tsv
    ├── 04395.tsv
    ├── 04397.tsv
    ├── 04398.tsv
    ├── 04400.tsv
    ├── 04401.tsv
    ├── 04402.tsv
    ├── 04403.tsv
    ├── 04405.tsv
    ├── 04406.tsv
    ├── 04416.tsv
    ├── 04417.tsv
    ├── 04418.tsv
    ├── 04419.tsv
    ├── 04420.tsv
    ├── 04421.tsv
    ├── 04422.tsv
    ├── 04424.tsv
    ├── 04425.tsv
    ├── 04426.tsv
    ├── 04427.tsv
    ├── 04428.tsv
    ├── 04430.tsv
    ├── 04432.tsv
    ├── 04433.tsv
    ├── 04434.tsv
    ├── 04435.tsv
    ├── 04436.tsv
    ├── 04437.tsv
    ├── 04438.tsv
    ├── 04440.tsv
    ├── 04441.tsv
    ├── 04442.tsv
    ├── 04443.tsv
    ├── 04444.tsv
    ├── 04445.tsv
    ├── 04446.tsv
    ├── 04448.tsv
    ├── 04449.tsv
    ├── 04450.tsv
    ├── 04451.tsv
    ├── 04452.tsv
    ├── 04453.tsv
    ├── 04454.tsv
    ├── 04456.tsv
    ├── 04458.tsv
    ├── 04460.tsv
    ├── 04462.tsv
    ├── 04464.tsv
    ├── 04465.tsv
    ├── 04466.tsv
    ├── 04467.tsv
    ├── 04468.tsv
    ├── 04469.tsv
    ├── 04470.tsv
    ├── 04480.tsv
    ├── 04481.tsv
    ├── 04482.tsv
    ├── 04483.tsv
    ├── 04484.tsv
    ├── 04485.tsv
    ├── 04486.tsv
    ├── 04488.tsv
    ├── 04489.tsv
    ├── 04490.tsv
    ├── 04491.tsv
    ├── 04492.tsv
    ├── 04493.tsv
    ├── 04494.tsv
    ├── 04496.tsv
    ├── 04497.tsv
    ├── 04498.tsv
    ├── 04499.tsv
    ├── 04500.tsv
    ├── 04501.tsv
    ├── 04502.tsv
    ├── 04504.tsv
    ├── 04505.tsv
    ├── 04506.tsv
    ├── 04507.tsv
    ├── 04508.tsv
    ├── 04509.tsv
    ├── 04510.tsv
    ├── 04512.tsv
    ├── 04513.tsv
    ├── 04514.tsv
    ├── 04515.tsv
    ├── 04516.tsv
    ├── 04517.tsv
    ├── 04518.tsv
    ├── 04520.tsv
    ├── 04521.tsv
    ├── 04522.tsv
    ├── 04523.tsv
    ├── 04524.tsv
    ├── 04525.tsv
    ├── 04526.tsv
    ├── 04528.tsv
    ├── 04529.tsv
    ├── 04530.tsv
    ├── 04531.tsv
    ├── 04532.tsv
    ├── 04533.tsv
    ├── 04534.tsv
    ├── 05120.tsv
    ├── 05121.tsv
    ├── 05122.tsv
    ├── 05123.tsv
    ├── 05124.tsv
    ├── 05125.tsv
    ├── 05126.tsv
    ├── 05128.tsv
    ├── 05129.tsv
    ├── 05130.tsv
    ├── 05131.tsv
    ├── 05132.tsv
    ├── 05133.tsv
    ├── 05134.tsv
    ├── 05136.tsv
    ├── 05137.tsv
    ├── 05138.tsv
    ├── 05139.tsv
    ├── 05140.tsv
    ├── 05141.tsv
    ├── 05144.tsv
    ├── 05145.tsv
    ├── 05146.tsv
    ├── 05147.tsv
    ├── 05148.tsv
    ├── 05149.tsv
    ├── 05150.tsv
    ├── 05152.tsv
    ├── 05153.tsv
    ├── 05154.tsv
    ├── 05155.tsv
    ├── 05156.tsv
    ├── 05157.tsv
    ├── 05158.tsv
    ├── 05160.tsv
    ├── 05161.tsv
    ├── 05162.tsv
    ├── 05163.tsv
    ├── 05164.tsv
    ├── 05165.tsv
    ├── 05166.tsv
    ├── 05168.tsv
    ├── 05169.tsv
    ├── 05170.tsv
    ├── 05171.tsv
    ├── 05172.tsv
    ├── 05173.tsv
    ├── 05174.tsv
    ├── 05184.tsv
    ├── 05185.tsv
    ├── 05186.tsv
    ├── 05187.tsv
    ├── 05188.tsv
    ├── 05189.tsv
    ├── 05190.tsv
    ├── 05192.tsv
    ├── 05193.tsv
    ├── 05196.tsv
    ├── 05197.tsv
    ├── 05198.tsv
    ├── 05200.tsv
    ├── 05201.tsv
    ├── 05202.tsv
    ├── 05204.tsv
    ├── 05205.tsv
    ├── 05206.tsv
    ├── 05208.tsv
    ├── 05216.tsv
    ├── 05217.tsv
    ├── 05218.tsv
    ├── 05219.tsv
    ├── 05220.tsv
    ├── 05221.tsv
    ├── 05222.tsv
    ├── 05224.tsv
    ├── 05225.tsv
    ├── 05226.tsv
    ├── 05227.tsv
    ├── 05228.tsv
    ├── 05229.tsv
    ├── 05230.tsv
    ├── 05232.tsv
    ├── 05233.tsv
    ├── 05234.tsv
    ├── 05235.tsv
    ├── 05236.tsv
    ├── 05237.tsv
    ├── 05238.tsv
    ├── 05249.tsv
    ├── 05253.tsv
    ├── 05256.tsv
    ├── 05257.tsv
    ├── 05258.tsv
    ├── 05259.tsv
    ├── 05260.tsv
    ├── 05261.tsv
    ├── 05262.tsv
    ├── 05274.tsv
    ├── 05277.tsv
    ├── 05281.tsv
    ├── 05283.tsv
    ├── 05288.tsv
    ├── 05289.tsv
    ├── 05290.tsv
    ├── 05291.tsv
    ├── 05292.tsv
    ├── 05293.tsv
    ├── 05294.tsv
    ├── 05312.tsv
    ├── 05313.tsv
    ├── 05314.tsv
    ├── 05315.tsv
    ├── 05316.tsv
    ├── 05317.tsv
    ├── 05318.tsv
    ├── 05320.tsv
    ├── 05322.tsv
    ├── 05323.tsv
    ├── 05324.tsv
    ├── 05325.tsv
    ├── 05326.tsv
    ├── 05328.tsv
    ├── 05329.tsv
    ├── 05330.tsv
    ├── 05331.tsv
    ├── 05332.tsv
    ├── 05333.tsv
    ├── 05334.tsv
    ├── 05336.tsv
    ├── 05337.tsv
    ├── 05338.tsv
    ├── 05339.tsv
    ├── 05340.tsv
    ├── 05341.tsv
    ├── 05342.tsv
    ├── 05344.tsv
    ├── 05345.tsv
    ├── 05346.tsv
    ├── 05347.tsv
    ├── 05348.tsv
    ├── 05349.tsv
    ├── 05350.tsv
    ├── 05352.tsv
    ├── 05353.tsv
    ├── 05354.tsv
    ├── 05355.tsv
    ├── 05356.tsv
    ├── 05358.tsv
    ├── 05360.tsv
    ├── 05361.tsv
    ├── 05362.tsv
    ├── 05363.tsv
    ├── 05364.tsv
    ├── 05365.tsv
    ├── 05366.tsv
    ├── 05376.tsv
    ├── 05377.tsv
    ├── 05378.tsv
    ├── 05379.tsv
    ├── 05380.tsv
    ├── 05381.tsv
    ├── 05382.tsv
    ├── 05384.tsv
    ├── 05385.tsv
    ├── 05386.tsv
    ├── 05387.tsv
    ├── 05388.tsv
    ├── 05389.tsv
    ├── 05390.tsv
    ├── 05392.tsv
    ├── 05393.tsv
    ├── 05394.tsv
    ├── 05395.tsv
    ├── 05396.tsv
    ├── 05397.tsv
    ├── 05398.tsv
    ├── 05400.tsv
    ├── 05401.tsv
    ├── 05402.tsv
    ├── 05403.tsv
    ├── 05404.tsv
    ├── 05405.tsv
    ├── 05406.tsv
    ├── 05408.tsv
    ├── 05409.tsv
    ├── 05410.tsv
    ├── 05411.tsv
    ├── 05412.tsv
    ├── 05413.tsv
    ├── 05414.tsv
    ├── 05416.tsv
    ├── 05417.tsv
    ├── 05418.tsv
    ├── 05419.tsv
    ├── 05420.tsv
    ├── 05421.tsv
    ├── 05422.tsv
    ├── 05424.tsv
    ├── 05425.tsv
    ├── 05426.tsv
    ├── 05427.tsv
    ├── 05428.tsv
    ├── 05429.tsv
    ├── 05430.tsv
    ├── 05440.tsv
    ├── 05441.tsv
    ├── 05442.tsv
    ├── 05443.tsv
    ├── 05444.tsv
    ├── 05445.tsv
    ├── 05446.tsv
    ├── 05448.tsv
    ├── 05449.tsv
    ├── 05450.tsv
    ├── 05451.tsv
    ├── 05452.tsv
    ├── 05453.tsv
    ├── 05454.tsv
    ├── 05456.tsv
    ├── 05457.tsv
    ├── 05458.tsv
    ├── 05459.tsv
    ├── 05460.tsv
    ├── 05461.tsv
    ├── 05462.tsv
    ├── 05464.tsv
    ├── 05465.tsv
    ├── 05466.tsv
    ├── 05467.tsv
    ├── 05468.tsv
    ├── 05469.tsv
    ├── 05470.tsv
    ├── 05472.tsv
    ├── 05473.tsv
    ├── 05474.tsv
    ├── 05475.tsv
    ├── 05476.tsv
    ├── 05477.tsv
    ├── 05478.tsv
    ├── 05480.tsv
    ├── 05481.tsv
    ├── 05482.tsv
    ├── 05483.tsv
    ├── 05484.tsv
    ├── 05485.tsv
    ├── 05486.tsv
    ├── 05488.tsv
    ├── 05489.tsv
    ├── 05490.tsv
    ├── 05491.tsv
    ├── 05492.tsv
    ├── 05493.tsv
    ├── 05494.tsv
    ├── 05504.tsv
    ├── 05505.tsv
    ├── 05506.tsv
    ├── 05507.tsv
    ├── 05508.tsv
    ├── 05509.tsv
    ├── 05510.tsv
    ├── 05516.tsv
    ├── 05517.tsv
    ├── 05518.tsv
    ├── 05521.tsv
    ├── 05525.tsv
    ├── 05532.tsv
    ├── 05536.tsv
    ├── 05537.tsv
    ├── 05538.tsv
    ├── 05539.tsv
    ├── 05540.tsv
    ├── 05541.tsv
    ├── 05542.tsv
    ├── 05544.tsv
    ├── 05545.tsv
    ├── 05546.tsv
    ├── 05547.tsv
    ├── 05548.tsv
    ├── 05549.tsv
    ├── 05550.tsv
    ├── 05552.tsv
    ├── 05553.tsv
    ├── 05555.tsv
    ├── 05556.tsv
    ├── 05557.tsv
    ├── 05633.tsv
    ├── 05634.tsv
    ├── 05636.tsv
    ├── 05638.tsv
    ├── 05640.tsv
    ├── 05644.tsv
    ├── 05646.tsv
    ├── 05648.tsv
    ├── 05650.tsv
    ├── 05652.tsv
    ├── 05653.tsv
    ├── 05654.tsv
    ├── 05664.tsv
    ├── 05666.tsv
    ├── 05667.tsv
    ├── 05668.tsv
    ├── 05669.tsv
    ├── 05670.tsv
    ├── 05680.tsv
    ├── 05681.tsv
    ├── 05682.tsv
    ├── 05683.tsv
    ├── 05684.tsv
    ├── 05685.tsv
    ├── 05686.tsv
    ├── 05712.tsv
    ├── 05714.tsv
    ├── 05715.tsv
    ├── 05720.tsv
    ├── 05721.tsv
    ├── 05726.tsv
    ├── 05733.tsv
    ├── 05792.tsv
    ├── 05793.tsv
    ├── 05794.tsv
    ├── 05797.tsv
    ├── 05798.tsv
    ├── 05808.tsv
    ├── 05809.tsv
    ├── 05810.tsv
    ├── 05813.tsv
    ├── 05888.tsv
    ├── 05889.tsv
    ├── 05890.tsv
    ├── 05891.tsv
    ├── 05892.tsv
    ├── 05893.tsv
    ├── 05894.tsv
    ├── 05896.tsv
    ├── 05897.tsv
    ├── 05898.tsv
    ├── 05899.tsv
    ├── 05900.tsv
    ├── 05901.tsv
    ├── 05904.tsv
    ├── 05905.tsv
    ├── 05908.tsv
    ├── 05909.tsv
    ├── 05910.tsv
    ├── 05913.tsv
    ├── 05914.tsv
    ├── 05915.tsv
    ├── 05916.tsv
    ├── 05920.tsv
    ├── 05921.tsv
    ├── 05922.tsv
    ├── 05923.tsv
    ├── 05924.tsv
    ├── 05925.tsv
    ├── 05926.tsv
    ├── 05928.tsv
    ├── 05929.tsv
    ├── 05930.tsv
    ├── 05931.tsv
    ├── 05932.tsv
    ├── 05933.tsv
    ├── 05934.tsv
    ├── 05936.tsv
    ├── 05937.tsv
    ├── 05938.tsv
    ├── 05939.tsv
    ├── 05940.tsv
    ├── 05941.tsv
    ├── 05942.tsv
    ├── 05952.tsv
    ├── 05953.tsv
    ├── 05954.tsv
    ├── 05955.tsv
    ├── 05956.tsv
    ├── 05957.tsv
    ├── 05958.tsv
    ├── 05968.tsv
    ├── 05969.tsv
    ├── 05970.tsv
    ├── 05972.tsv
    ├── 05973.tsv
    ├── 05974.tsv
    ├── 05980.tsv
    ├── 05984.tsv
    ├── 05985.tsv
    ├── 05986.tsv
    ├── 05987.tsv
    ├── 05988.tsv
    ├── 05989.tsv
    ├── 05990.tsv
    ├── 05992.tsv
    ├── 05993.tsv
    ├── 05994.tsv
    ├── 05995.tsv
    ├── 05996.tsv
    ├── 05997.tsv
    ├── 05998.tsv
    ├── 06000.tsv
    ├── 06001.tsv
    ├── 06002.tsv
    ├── 06003.tsv
    ├── 06004.tsv
    ├── 06005.tsv
    ├── 06006.tsv
    ├── 06024.tsv
    ├── 06025.tsv
    ├── 06027.tsv
    ├── 06029.tsv
    ├── 06057.tsv
    ├── 06059.tsv
    ├── 06070.tsv
    ├── 07753.tsv
    ├── 07754.tsv
    ├── 07755.tsv
    ├── 07768.tsv
    ├── 07769.tsv
    ├── 07770.tsv
    ├── 07773.tsv
    ├── 07776.tsv
    ├── 07777.tsv
    ├── 07780.tsv
    ├── 07781.tsv
    ├── 07782.tsv
    ├── 07789.tsv
    ├── 07881.tsv
    ├── 07885.tsv
    ├── 07913.tsv
    ├── 07915.tsv
    ├── 08001.tsv
    ├── 08002.tsv
    ├── 08003.tsv
    ├── 08005.tsv
    ├── 08006.tsv
    ├── 08009.tsv
    ├── 08013.tsv
    ├── 08020.tsv
    ├── 08021.tsv
    ├── 08024.tsv
    ├── 08025.tsv
    ├── 08026.tsv
    ├── 08028.tsv
    ├── 08030.tsv
    ├── 08040.tsv
    ├── 08041.tsv
    ├── 08042.tsv
    ├── 08043.tsv
    ├── 08044.tsv
    ├── 08045.tsv
    ├── 08046.tsv
    ├── 08048.tsv
    ├── 08049.tsv
    ├── 08050.tsv
    ├── 08051.tsv
    ├── 08257.tsv
    ├── 08261.tsv
    ├── 08264.tsv
    ├── 08265.tsv
    ├── 08268.tsv
    ├── 08269.tsv
    ├── 08288.tsv
    ├── 08289.tsv
    ├── 08290.tsv
    ├── 08291.tsv
    ├── 08292.tsv
    ├── 08293.tsv
    ├── 08294.tsv
    ├── 08296.tsv
    ├── 08297.tsv
    ├── 08298.tsv
    ├── 08299.tsv
    ├── 08300.tsv
    ├── 08301.tsv
    ├── 08302.tsv
    ├── 08449.tsv
    ├── 08452.tsv
    ├── 08453.tsv
    ├── 08480.tsv
    ├── 08481.tsv
    ├── 08482.tsv
    ├── 08483.tsv
    ├── 08484.tsv
    ├── 08485.tsv
    ├── 08486.tsv
    ├── 08488.tsv
    ├── 08489.tsv
    ├── 08490.tsv
    ├── 08492.tsv
    ├── 08493.tsv
    ├── 08494.tsv
    ├── 08501.tsv
    ├── 08512.tsv
    ├── 08513.tsv
    ├── 08515.tsv
    ├── 08516.tsv
    ├── 08517.tsv
    ├── 08518.tsv
    ├── 08520.tsv
    ├── 08521.tsv
    ├── 08522.tsv
    ├── 08523.tsv
    ├── 08524.tsv
    ├── 08525.tsv
    ├── 08526.tsv
    ├── 08541.tsv
    ├── 08544.tsv
    ├── 08545.tsv
    ├── 08546.tsv
    ├── 08547.tsv
    ├── 08548.tsv
    ├── 08549.tsv
    ├── 08550.tsv
    ├── 08552.tsv
    ├── 08553.tsv
    ├── 08554.tsv
    ├── 08555.tsv
    ├── 08556.tsv
    ├── 08557.tsv
    ├── 08558.tsv
    ├── 08564.tsv
    ├── 08565.tsv
    ├── 08793.tsv
    ├── 09253.tsv
    ├── 09316.tsv
    ├── 09317.tsv
    ├── 09472.tsv
    ├── 09473.tsv
    ├── 09474.tsv
    ├── 09475.tsv
    ├── 09476.tsv
    ├── 09477.tsv
    ├── 09478.tsv
    ├── 09480.tsv
    ├── 09482.tsv
    ├── 09484.tsv
    ├── 09485.tsv
    ├── 09486.tsv
    ├── 09492.tsv
    ├── 09493.tsv
    ├── 09501.tsv
    ├── 09504.tsv
    ├── 09505.tsv
    ├── 09506.tsv
    ├── 09507.tsv
    ├── 09508.tsv
    ├── 09509.tsv
    ├── 09510.tsv
    ├── 09512.tsv
    ├── 09513.tsv
    ├── 09514.tsv
    ├── 09515.tsv
    ├── 09516.tsv
    ├── 09517.tsv
    ├── 09518.tsv
    ├── 09520.tsv
    ├── 09521.tsv
    ├── 09522.tsv
    ├── 09523.tsv
    ├── 09524.tsv
    ├── 09525.tsv
    ├── 09526.tsv
    ├── 09536.tsv
    ├── 09537.tsv
    ├── 09538.tsv
    ├── 09539.tsv
    ├── 09540.tsv
    ├── 09541.tsv
    ├── 09542.tsv
    ├── 09544.tsv
    ├── 09545.tsv
    ├── 09546.tsv
    ├── 09547.tsv
    ├── 09548.tsv
    ├── 09549.tsv
    ├── 09550.tsv
    ├── 09552.tsv
    ├── 09553.tsv
    ├── 09556.tsv
    ├── 09557.tsv
    ├── 09561.tsv
    ├── 09564.tsv
    ├── 09565.tsv
    ├── 09568.tsv
    ├── 09569.tsv
    ├── 09570.tsv
    ├── 09571.tsv
    ├── 09572.tsv
    ├── 09573.tsv
    ├── 09574.tsv
    ├── 09576.tsv
    ├── 09577.tsv
    ├── 09578.tsv
    ├── 09579.tsv
    ├── 09580.tsv
    ├── 09581.tsv
    ├── 09582.tsv
    ├── 09584.tsv
    ├── 09585.tsv
    ├── 09586.tsv
    ├── 09587.tsv
    ├── 09588.tsv
    ├── 09589.tsv
    ├── 09590.tsv
    ├── 11272.tsv
    ├── 11273.tsv
    ├── 11277.tsv
    ├── 11291.tsv
    ├── 11296.tsv
    ├── 11297.tsv
    ├── 11300.tsv
    ├── 11302.tsv
    ├── 11304.tsv
    ├── 11305.tsv
    ├── 11307.tsv
    ├── 11308.tsv
    ├── 11309.tsv
    ├── 11328.tsv
    ├── 11329.tsv
    ├── 11330.tsv
    ├── 11332.tsv
    ├── 11334.tsv
    ├── 11345.tsv
    ├── 11347.tsv
    ├── 11349.tsv
    ├── 11360.tsv
    ├── 11361.tsv
    ├── 11362.tsv
    ├── 11363.tsv
    ├── 11364.tsv
    ├── 11365.tsv
    ├── 11366.tsv
    ├── 11370.tsv
    ├── 11376.tsv
    ├── 11377.tsv
    ├── 11378.tsv
    ├── 11380.tsv
    ├── 11381.tsv
    ├── 11382.tsv
    ├── 11456.tsv
    ├── 11462.tsv
    ├── 11492.tsv
    ├── 11493.tsv
    ├── 11494.tsv
    ├── 11496.tsv
    ├── 11500.tsv
    ├── 11502.tsv
    ├── 11505.tsv
    ├── 11509.tsv
    ├── 11520.tsv
    ├── 11521.tsv
    ├── 11523.tsv
    ├── 11524.tsv
    ├── 11525.tsv
    ├── 11545.tsv
    ├── 11549.tsv
    ├── 11554.tsv
    ├── 11560.tsv
    ├── 11561.tsv
    ├── 11564.tsv
    ├── 11565.tsv
    ├── 11573.tsv
    ├── 11584.tsv
    ├── 11585.tsv
    ├── 11586.tsv
    ├── 11587.tsv
    ├── 11588.tsv
    ├── 11589.tsv
    ├── 11590.tsv
    ├── 11592.tsv
    ├── 11593.tsv
    ├── 11594.tsv
    ├── 11595.tsv
    ├── 11596.tsv
    ├── 11597.tsv
    ├── 11598.tsv
    ├── 11600.tsv
    ├── 11601.tsv
    ├── 11602.tsv
    ├── 11603.tsv
    ├── 11604.tsv
    ├── 11605.tsv
    ├── 11606.tsv
    ├── 11608.tsv
    ├── 11609.tsv
    ├── 11610.tsv
    ├── 11611.tsv
    ├── 11612.tsv
    ├── 11613.tsv
    ├── 11614.tsv
    ├── 11618.tsv
    ├── 11619.tsv
    ├── 11624.tsv
    ├── 11625.tsv
    ├── 11626.tsv
    ├── 11627.tsv
    ├── 11628.tsv
    ├── 11629.tsv
    ├── 11630.tsv
    ├── 11632.tsv
    ├── 11633.tsv
    ├── 11634.tsv
    ├── 11635.tsv
    ├── 11636.tsv
    ├── 11637.tsv
    ├── 11638.tsv
    ├── 11784.tsv
    ├── 11786.tsv
    ├── 11789.tsv
    ├── 11794.tsv
    ├── 11801.tsv
    ├── 11803.tsv
    ├── 11805.tsv
    ├── 11844.tsv
    ├── 11875.tsv
    ├── 11880.tsv
    ├── 11881.tsv
    ├── 11883.tsv
    ├── 11886.tsv
    ├── 11888.tsv
    ├── 11889.tsv
    ├── 11894.tsv
    ├── 11912.tsv
    ├── 11913.tsv
    ├── 11914.tsv
    ├── 11915.tsv
    ├── 11916.tsv
    ├── 11917.tsv
    ├── 11928.tsv
    ├── 11929.tsv
    ├── 11931.tsv
    ├── 11933.tsv
    ├── 11937.tsv
    ├── 11938.tsv
    ├── 11939.tsv
    ├── 11944.tsv
    ├── 11945.tsv
    ├── 11948.tsv
    ├── 11949.tsv
    ├── 11950.tsv
    ├── 11952.tsv
    ├── 11957.tsv
    ├── 11958.tsv
    ├── 11968.tsv
    ├── 11969.tsv
    ├── 11970.tsv
    ├── 11971.tsv
    ├── 11976.tsv
    ├── 11977.tsv
    ├── 11978.tsv
    ├── 11979.tsv
    ├── 11980.tsv
    ├── 11981.tsv
    ├── 11982.tsv
    ├── 11984.tsv
    ├── 11985.tsv
    ├── 11986.tsv
    ├── 11987.tsv
    ├── 11989.tsv
    ├── 11992.tsv
    ├── 11993.tsv
    ├── 11994.tsv
    ├── 11995.tsv
    ├── 11996.tsv
    ├── 11997.tsv
    ├── 11998.tsv
    ├── 12004.tsv
    ├── 12006.tsv
    ├── 12009.tsv
    ├── 12010.tsv
    ├── 12011.tsv
    ├── 12018.tsv
    ├── 12020.tsv
    ├── 12021.tsv
    ├── 12022.tsv
    ├── 12481.tsv
    ├── 12489.tsv
    ├── 12490.tsv
    ├── 12491.tsv
    ├── 12492.tsv
    ├── 12520.tsv
    ├── 12522.tsv
    ├── 12524.tsv
    ├── 12609.tsv
    ├── 12613.tsv
    ├── 12622.tsv
    ├── 12632.tsv
    ├── 12633.tsv
    ├── 12635.tsv
    ├── 12637.tsv
    ├── 12641.tsv
    ├── 12643.tsv
    ├── 12644.tsv
    ├── 12645.tsv
    ├── 12648.tsv
    ├── 12650.tsv
    ├── 12652.tsv
    ├── 12653.tsv
    ├── 12654.tsv
    └── 32767.tsv

7 directories, 3638 files

Запустим импорт данных в базу:

docker run --name postgis15-russia_08_01_2023 --memory=12g --memory-swap=12g --memory-swappiness 0 --shm-size=1g -v /home/acc/dev/map/database/russia:/var/lib/postgresql/data -v /home/acc/dev/map/russia/russia-latest_loc_ways:/input -e POSTGRES_PASSWORD=osmworld -e LD_LIBRARY_PATH=/usr/lib/jvm/java-11-openjdk-amd64/lib/server/ -d -p 5432:5432 postgres15_postgis:latest -c checkpoint_timeout='15 min' -c checkpoint_completion_target=0.9 -c shared_buffers='4096 MB' -c wal_buffers=-1 -c bgwriter_delay=200ms -c bgwriter_lru_maxpages=100 -c bgwriter_lru_multiplier=2.0 -c bgwriter_flush_after=0 -c max_wal_size='32768 MB' -c min_wal_size='16384 MB'

И дождемся окончания загрузки:

docker logs -f postgis15-russia_08_01_2023
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale "en_US.utf8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".

Data page checksums are disabled.

fixing permissions on existing directory /var/lib/postgresql/data ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default time zone ... Etc/UTC
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok


Success. You can now start the database server using:

    pg_ctl -D /var/lib/postgresql/data -l logfile start

waiting for server to start....2023-02-10 10:20:28.151 UTC [49] LOG:  number of prepared transactions has not been configured, overriding
2023-02-10 10:20:28.151 UTC [49] DETAIL:  max_prepared_transactions is now set to 200
2023-02-10 10:20:28.193 UTC [49] LOG:  starting PostgreSQL 15.1 (Debian 15.1-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
2023-02-10 10:20:28.196 UTC [49] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2023-02-10 10:20:28.205 UTC [52] LOG:  database system was shut down at 2023-02-10 10:20:28 UTC
2023-02-10 10:20:28.209 UTC [49] LOG:  database system is ready to accept connections
 done
server started

/usr/local/bin/docker-entrypoint.sh: sourcing /docker-entrypoint-initdb.d/10_postgis.sh
CREATE DATABASE
Loading PostGIS extensions into template_postgis
CREATE EXTENSION
CREATE EXTENSION
You are now connected to database "template_postgis" as user "postgres".
CREATE EXTENSION
CREATE EXTENSION
Loading PostGIS extensions into postgres
CREATE EXTENSION
CREATE EXTENSION
You are now connected to database "postgres" as user "postgres".
CREATE EXTENSION
CREATE EXTENSION

/usr/local/bin/docker-entrypoint.sh: sourcing /docker-entrypoint-initdb.d/init_db.sh
init OSM database
ALTER SYSTEM
ALTER SYSTEM
ALTER SYSTEM
SET
SET
ALTER SYSTEM
ALTER SYSTEM
ALTER SYSTEM
ALTER SYSTEM
ALTER SYSTEM
 pg_reload_conf 
----------------
 t
(1 row)

Timing is on.
2023-02-10 10:20:30.353 UTC [49] LOG:  received SIGHUP, reloading configuration files
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "listen_addresses" cannot be changed without restarting the server
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "shared_buffers" cannot be changed without restarting the server
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "max_parallel_workers_per_gather" changed to "6"
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "max_parallel_workers" changed to "6"
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "max_parallel_maintenance_workers" changed to "6"
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "random_page_cost" changed to "1.1"
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "effective_io_concurrency" changed to "200"
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "enable_partitionwise_join" changed to "on"
2023-02-10 10:20:30.354 UTC [49] LOG:  parameter "enable_partitionwise_aggregate" changed to "on"
2023-02-10 10:20:30.354 UTC [49] LOG:  configuration file "/var/lib/postgresql/data/postgresql.conf" contains errors; unaffected changes were applied
CREATE DATABASE
Time: 33.327 ms
You are now connected to database "osmworld" as user "postgres".
CREATE EXTENSION
Time: 291.934 ms
CREATE EXTENSION
Time: 7.271 ms
BEGIN
Time: 0.040 ms
CREATE TABLE
Time: 0.341 ms
CREATE TABLE
Time: 0.307 ms
CREATE TABLE
Time: 3.171 ms
CREATE TABLE
Time: 2.975 ms
CREATE TABLE
Time: 0.262 ms
CREATE TABLE
Time: 3.616 ms
CREATE TABLE
Time: 3.564 ms
CREATE TABLE
Time: 3.502 ms
CREATE TABLE
Time: 3.719 ms
CREATE TABLE
Time: 3.768 ms
CREATE TABLE
Time: 3.827 ms
CREATE TABLE
Time: 4.029 ms
CREATE TABLE
Time: 3.979 ms
CREATE TABLE
Time: 4.314 ms
CREATE TABLE
Time: 4.317 ms
CREATE TABLE
Time: 4.383 ms
CREATE TABLE
Time: 4.377 ms
CREATE TABLE
Time: 4.247 ms
CREATE TABLE
Time: 3.932 ms
CREATE TABLE
Time: 3.999 ms
CREATE TABLE
Time: 4.208 ms
CREATE TABLE
Time: 4.033 ms
CREATE TABLE
Time: 4.364 ms
CREATE TABLE
Time: 4.279 ms
CREATE TABLE
Time: 4.263 ms
CREATE TABLE
Time: 4.311 ms
CREATE TABLE
Time: 4.375 ms
CREATE TABLE
Time: 4.379 ms
CREATE TABLE
Time: 4.042 ms
CREATE TABLE
Time: 3.979 ms
CREATE TABLE
Time: 4.409 ms
CREATE TABLE
Time: 3.935 ms
CREATE TABLE
Time: 3.934 ms
CREATE TABLE
Time: 4.190 ms
CREATE TABLE
Time: 4.070 ms
CREATE TABLE
Time: 3.981 ms
CREATE TABLE
Time: 4.132 ms
CREATE TABLE
Time: 3.948 ms
CREATE TABLE
Time: 3.903 ms
CREATE TABLE
Time: 3.411 ms
CREATE TABLE
Time: 3.079 ms
CREATE TABLE
Time: 3.497 ms
CREATE TABLE
Time: 3.684 ms
CREATE TABLE
Time: 4.054 ms
CREATE TABLE
Time: 4.360 ms
CREATE TABLE
Time: 4.286 ms
CREATE TABLE
Time: 4.379 ms
CREATE TABLE
Time: 4.128 ms
CREATE TABLE
Time: 4.533 ms
CREATE TABLE
Time: 4.469 ms
CREATE TABLE
Time: 4.293 ms
CREATE TABLE
Time: 4.423 ms
CREATE TABLE
Time: 4.265 ms
CREATE TABLE
Time: 4.193 ms
CREATE TABLE
Time: 4.115 ms
CREATE TABLE
Time: 4.638 ms
CREATE TABLE
Time: 4.486 ms
CREATE TABLE
Time: 10.139 ms
CREATE TABLE
Time: 3.788 ms
COPY 41380
Time: 116.852 ms
CREATE INDEX
Time: 48.669 ms
CREATE INDEX
Time: 48.452 ms
CREATE FUNCTION
Time: 0.396 ms
CREATE FUNCTION
Time: 0.254 ms
CREATE FUNCTION
Time: 0.132 ms
CREATE FUNCTION
Time: 0.056 ms
CREATE FUNCTION
Time: 0.095 ms
COMMIT
Time: 7.141 ms
parallel OSM data loading
SET
Timing is on.
BEGIN
Time: 0.014 ms
CREATE TABLE
Time: 4.470 ms
COPY 4505
Time: 23.276 ms
COPY 1196
Time: 3.304 ms
COPY 2728
Time: 11.328 ms
COPY 3105
Time: 7.938 ms
COPY 3452
Time: 8.599 ms
COPY 9375
Time: 44.268 ms
COPY 5759
Time: 15.244 ms
COPY 3084
Time: 6.991 ms
COPY 439
Time: 1.464 ms
COPY 7912
Time: 42.849 ms
COPY 2704
Time: 7.416 ms
COPY 271
Time: 1.324 ms
COPY 378
Time: 1.150 ms
COPY 435
Time: 1.856 ms
COPY 461
Time: 1.380 ms
COPY 530
Time: 1.929 ms
COPY 1688
Time: 4.562 ms
COPY 1
Time: 0.171 ms
COPY 5
Time: 0.172 ms
COPY 5
Time: 0.171 ms
COPY 3402
Time: 7.773 ms
COPY 1009
Time: 3.204 ms
COPY 327
Time: 0.854 ms
COPY 1298
Time: 3.296 ms
COPY 2095
Time: 4.366 ms
COPY 92
Time: 0.462 ms
COPY 825
Time: 26.567 ms
COPY 65
Time: 0.349 ms
COPY 135
Time: 0.658 ms
COPY 111
Time: 0.580 ms
COPY 25
Time: 0.226 ms
COPY 94
Time: 0.416 ms
COPY 5
Time: 0.180 ms
COPY 1358
Time: 17.239 ms
COPY 106
Time: 0.810 ms
COPY 4611
Time: 18.777 ms
COPY 297
Time: 1.523 ms
COPY 2666
Time: 7.287 ms
COPY 831
Time: 2.530 ms
COPY 21277
Time: 67.744 ms
COPY 46
Time: 0.320 ms
COPY 56
Time: 1.575 ms
COPY 22
Time: 0.756 ms
COPY 231
Time: 1.054 ms
COPY 192
Time: 0.940 ms
COPY 682
Time: 2.398 ms
COPY 56
Time: 0.420 ms
CREATE TABLE
Time: 4.399 ms
COPY 925
Time: 7.206 ms
COPY 668
Time: 2.511 ms
COPY 749
Time: 2.154 ms
COPY 1527
Time: 25.990 ms
COPY 1189
Time: 5.583 ms
COPY 4201
Time: 11.972 ms
COPY 1611
Time: 5.239 ms
COPY 2720
Time: 6.479 ms
COPY 4765
Time: 14.845 ms
COPY 1419
Time: 10.947 ms
COPY 1960
Time: 26.180 ms
COPY 1163
Time: 5.336 ms
COPY 3467
Time: 10.901 ms
COPY 4106
Time: 13.665 ms
COPY 446
Time: 2.474 ms
COPY 548
Time: 1.808 ms
COPY 9
Time: 0.224 ms
COPY 13
Time: 0.192 ms
COPY 777
Time: 2.466 ms
COPY 546
Time: 4.424 ms
COPY 2256
Time: 6.109 ms
COPY 72
Time: 0.522 ms
COPY 5
Time: 0.174 ms
COPY 56
Time: 0.426 ms
COPY 331
Time: 29.325 ms
COPY 3
Time: 0.292 ms
COPY 1009
Time: 4.317 ms
COPY 422
Time: 3.491 ms
COPY 238
Time: 1.917 ms
COPY 18
Time: 0.214 ms
COPY 68
Time: 0.529 ms
COPY 360
Time: 1.493 ms
COPY 7
Time: 0.173 ms
COPY 26
Time: 0.256 ms
COPY 126
Time: 0.595 ms
COPY 216
Time: 1.049 ms
COPY 6
Time: 0.248 ms
COPY 126
Time: 0.762 ms
COPY 276
Time: 0.989 ms
COPY 81
Time: 0.509 ms
COPY 217
Time: 1.008 ms
COPY 165
Time: 0.892 ms
COPY 512
Time: 6.928 ms
COPY 25938
Time: 138.874 ms
COPY 1083
Time: 5.002 ms
COPY 2192
Time: 7.885 ms
COPY 5113
Time: 12.220 ms
COPY 3277
Time: 8.099 ms
COPY 147
Time: 0.683 ms
CREATE TABLE
Time: 3.675 ms
COPY 100
Time: 2.637 ms
COPY 2264
Time: 7.022 ms
COPY 1
Time: 0.156 ms
COPY 2717
Time: 33.182 ms
COPY 29
Time: 0.286 ms
COPY 616
Time: 2.019 ms
COPY 14
Time: 0.202 ms
COPY 145
Time: 0.494 ms
COPY 10008
Time: 32.416 ms
COPY 35204
Time: 153.139 ms
COPY 1730
Time: 5.458 ms
COPY 3673
Time: 10.861 ms
COPY 32843
Time: 149.746 ms
COPY 18
Time: 0.294 ms
COPY 16
Time: 0.236 ms
COPY 4
Time: 0.243 ms
COPY 30
Time: 0.406 ms
COPY 25
Time: 0.279 ms
COPY 15
Time: 0.291 ms
COPY 16
Time: 0.222 ms
COPY 2
Time: 0.140 ms
COPY 10
Time: 0.183 ms
COPY 11080
Time: 58.191 ms
COPY 3
Time: 0.201 ms
COPY 1505
Time: 3.637 ms
COPY 250
Time: 1.087 ms
COPY 6860
Time: 14.278 ms
COPY 1611
Time: 4.375 ms
COPY 3051
Time: 12.603 ms
COPY 26
Time: 0.315 ms
COPY 13
Time: 0.305 ms
CREATE TABLE
Time: 26.986 ms
COPY 96
Time: 0.907 ms
COPY 8
Time: 0.251 ms
COPY 7329
Time: 35.723 ms
COPY 8
Time: 0.259 ms
COPY 4726
Time: 9.869 ms
COPY 625
Time: 1.868 ms
COPY 13021
Time: 56.494 ms
COPY 1
Time: 0.175 ms
COPY 255
Time: 0.841 ms
COPY 1902
Time: 4.455 ms
COPY 686
Time: 1.959 ms
COPY 1372
Time: 11.536 ms
COPY 575
Time: 2.244 ms
COPY 1
Time: 0.636 ms
COPY 308
Time: 0.947 ms
COPY 1246
Time: 3.532 ms
COPY 584
Time: 27.050 ms
COPY 38304
Time: 168.550 ms
COPY 26513
Time: 99.955 ms
COPY 149
Time: 0.594 ms
COPY 45529
Time: 183.428 ms
COPY 1244
Time: 2.983 ms
CREATE TABLE
Time: 4.051 ms
COPY 12624
Time: 78.075 ms
COPY 12670
Time: 48.921 ms
COPY 10312
Time: 25.241 ms
COPY 9833
Time: 58.575 ms
COPY 63390
Time: 297.794 ms
COPY 31284
Time: 127.931 ms
COPY 15953
Time: 102.176 ms
CREATE TABLE
Time: 8.768 ms
COPY 50539
Time: 305.917 ms
COPY 4318
Time: 10.483 ms
COPY 6561
Time: 37.911 ms
COPY 7486
Time: 20.964 ms
COPY 8366
Time: 34.050 ms
COPY 11817
Time: 46.646 ms
COPY 6787
Time: 15.091 ms
CREATE TABLE
Time: 4.998 ms
COPY 13245
Time: 64.356 ms
COPY 16645
Time: 108.902 ms
COPY 6117
Time: 17.391 ms
COPY 23240
Time: 111.639 ms
COPY 33957
Time: 152.286 ms
COPY 17025
Time: 118.712 ms
COPY 30908
Time: 143.289 ms
CREATE TABLE
Time: 3.497 ms
COPY 11999
Time: 25.830 ms
COPY 6623
Time: 59.543 ms
COPY 4806
Time: 13.399 ms
COPY 3598
Time: 8.175 ms
COPY 7178
Time: 18.276 ms
COPY 26589
Time: 105.743 ms
COPY 10179
Time: 29.351 ms
COPY 307
Time: 0.923 ms
COPY 5478
Time: 20.986 ms
COPY 1676
Time: 24.355 ms
COPY 14142
Time: 50.101 ms
COPY 12793
Time: 69.216 ms
COPY 7462
Time: 18.630 ms
COPY 5577
Time: 58.640 ms
COPY 17852
Time: 72.135 ms
COPY 17624
Time: 83.682 ms
COPY 8316
Time: 28.160 ms
CREATE TABLE
Time: 10.918 ms
COPY 16589
Time: 66.623 ms
COPY 34045
Time: 213.305 ms
COPY 34901
Time: 246.234 ms
COPY 72372
Time: 680.499 ms
COPY 4560
Time: 42.116 ms
COPY 4209
Time: 16.514 ms
COPY 18977
Time: 132.736 ms
COPY 12
Time: 0.428 ms
COPY 115
Time: 1.711 ms
COPY 18
Time: 0.451 ms
COPY 78
Time: 0.681 ms
COPY 126
Time: 0.895 ms
COPY 56
Time: 0.398 ms
COPY 22
Time: 0.462 ms
COPY 3
Time: 0.244 ms
COPY 5
Time: 0.203 ms
CREATE TABLE
Time: 4.156 ms
COPY 16240
Time: 105.945 ms
COPY 420
Time: 3.250 ms
COPY 1169
Time: 6.343 ms
COPY 1298
Time: 6.897 ms
COPY 489
Time: 3.288 ms
COPY 297
Time: 2.320 ms
COPY 1
Time: 0.229 ms
COPY 2036
Time: 18.264 ms
COPY 62
Time: 0.377 ms
COPY 31
Time: 0.311 ms
COPY 298
Time: 1.738 ms
COPY 215
Time: 1.423 ms
COPY 410
Time: 3.065 ms
COPY 15
Time: 0.278 ms
COPY 65
Time: 0.481 ms
COPY 572
Time: 3.365 ms
COPY 6
Time: 0.289 ms
COPY 12
Time: 0.273 ms
COPY 87
Time: 0.895 ms
COPY 75
Time: 0.700 ms
COPY 23
Time: 0.380 ms
COPY 223
Time: 1.716 ms
COPY 1811
Time: 9.901 ms
COPY 153
Time: 1.124 ms
COPY 40
Time: 0.517 ms
COPY 2809
Time: 32.231 ms
COPY 5645
Time: 29.719 ms
COPY 3156
Time: 15.421 ms
COPY 264
Time: 2.179 ms
COPY 630
Time: 4.166 ms
COPY 1742
Time: 9.568 ms
COPY 542
Time: 3.278 ms
COPY 100
Time: 0.877 ms
COPY 76
Time: 0.622 ms
COPY 18
Time: 0.361 ms
COPY 2
Time: 0.321 ms
COPY 83
Time: 0.657 ms
COPY 297
Time: 1.715 ms
COPY 1973
Time: 9.489 ms
COPY 6383
Time: 72.393 ms
COPY 382
Time: 1.873 ms
COPY 15
Time: 0.316 ms
COPY 305
Time: 1.730 ms
COPY 54
Time: 0.486 ms
COPY 59
Time: 0.370 ms
COPY 195
Time: 0.921 ms
COPY 1
Time: 0.186 ms
COPY 142
Time: 1.089 ms
COPY 331
Time: 2.354 ms
COPY 1
Time: 0.213 ms
COPY 6
Time: 0.253 ms
COPY 96
Time: 0.616 ms
COPY 35
Time: 0.297 ms
COPY 77
Time: 0.473 ms
COPY 1
Time: 0.199 ms
COPY 3
Time: 0.218 ms
COPY 1
Time: 0.201 ms
COPY 1
Time: 0.185 ms
COPY 3
Time: 0.198 ms
COPY 2
Time: 0.191 ms
COPY 2
Time: 0.203 ms
COPY 243
Time: 2.125 ms
COPY 559
Time: 3.622 ms
COPY 4
Time: 0.222 ms
COPY 2
Time: 0.210 ms
COPY 3
Time: 0.195 ms
COPY 55671
Time: 334.670 ms
COPY 4405
Time: 24.197 ms
COPY 2596
Time: 17.874 ms
COPY 1
Time: 0.296 ms
ALTER TABLE
Time: 22.197 ms
ALTER TABLE
Time: 11.988 ms
ALTER TABLE
Time: 23.831 ms
ALTER TABLE
Time: 47.492 ms
ALTER TABLE
Time: 36.609 ms
ALTER TABLE
Time: 23.519 ms
ALTER TABLE
Time: 28.349 ms
ALTER TABLE
Time: 49.410 ms
ALTER TABLE
Time: 50.186 ms
ALTER TABLE
Time: 31.208 ms
COMMIT
Time: 116.434 ms
SET
Timing is on.
BEGIN
Time: 0.024 ms
CREATE TABLE
Time: 5.819 ms
COPY 1
Time: 7.812 ms
COPY 2
Time: 0.146 ms
COPY 1
Time: 0.135 ms
COPY 1
Time: 0.259 ms
COPY 1
Time: 0.810 ms
COPY 1
Time: 0.171 ms
COPY 1
Time: 0.140 ms
COPY 1
Time: 1.564 ms
COPY 39
Time: 2.971 ms
COPY 1
Time: 2.768 ms
COPY 89
Time: 0.855 ms
COPY 21
Time: 0.282 ms
COPY 52
Time: 0.514 ms
COPY 41
Time: 0.423 ms
COPY 1
Time: 0.141 ms
COPY 1
Time: 0.158 ms
COPY 3
Time: 0.197 ms
COPY 1
Time: 0.167 ms
COPY 17
Time: 0.181 ms
COPY 2
Time: 0.188 ms
COPY 330
Time: 0.971 ms
COPY 54
Time: 0.282 ms
COPY 22
Time: 0.196 ms
COPY 239
Time: 0.763 ms
COPY 3
Time: 0.304 ms
COPY 1
Time: 0.197 ms
COPY 1
Time: 0.252 ms
COPY 2
Time: 0.149 ms
COPY 15
Time: 0.155 ms
COPY 7
Time: 0.155 ms
COPY 27
Time: 0.259 ms
COPY 17
Time: 0.194 ms
COPY 13
Time: 0.229 ms
COPY 2
Time: 0.251 ms
COPY 22
Time: 0.330 ms
COPY 25
Time: 0.431 ms
COPY 2
Time: 0.210 ms
COPY 1
Time: 0.160 ms
COPY 13
Time: 0.218 ms
COPY 5
Time: 0.189 ms
COPY 1
Time: 0.150 ms
COPY 1
Time: 0.133 ms
COPY 27
Time: 0.329 ms
COPY 1
Time: 0.213 ms
COPY 1
Time: 0.161 ms
COPY 1
Time: 0.150 ms
COPY 1
Time: 0.146 ms
COPY 1
Time: 0.198 ms
COPY 1
Time: 0.151 ms
COPY 1
Time: 0.150 ms
COPY 1
Time: 0.146 ms
COPY 1
Time: 0.149 ms
COPY 587
Time: 2.368 ms
COPY 75
Time: 0.462 ms
COPY 107
Time: 0.454 ms
COPY 32
Time: 0.312 ms
COPY 1
Time: 0.171 ms
COPY 5417
Time: 13.709 ms
COPY 596
Time: 2.139 ms
COPY 1378
Time: 4.655 ms
COPY 16
Time: 0.202 ms
COPY 5
Time: 0.221 ms
COPY 21
Time: 0.221 ms
COPY 309
Time: 4.299 ms
COPY 31
Time: 0.313 ms
COPY 41
Time: 0.265 ms
COPY 1
Time: 0.150 ms
COPY 13
Time: 0.164 ms
COPY 6
Time: 0.227 ms
COPY 38
Time: 0.356 ms
COPY 27
Time: 5.299 ms
COPY 1
Time: 0.166 ms
COPY 169
Time: 0.637 ms
COPY 22
Time: 0.205 ms
COPY 1
Time: 0.215 ms
COPY 20
Time: 0.216 ms
COPY 2
Time: 0.152 ms
COPY 1
Time: 0.144 ms
COPY 1
Time: 0.181 ms
COPY 1
Time: 0.144 ms
COPY 2
Time: 0.171 ms
COPY 7
Time: 0.172 ms
COPY 43
Time: 0.455 ms
COPY 61
Time: 0.367 ms
COPY 13
Time: 0.167 ms
COPY 7
Time: 0.150 ms
COPY 6
Time: 0.228 ms
COPY 3
Time: 0.147 ms
COPY 6
Time: 0.171 ms
COPY 2
Time: 0.149 ms
COPY 13
Time: 0.188 ms
COPY 347
Time: 20.466 ms
COPY 8
Time: 0.267 ms
COPY 3
Time: 0.157 ms
COPY 7
Time: 0.167 ms
COPY 25
Time: 0.206 ms
COPY 16
Time: 0.206 ms
COPY 2
Time: 0.191 ms
COPY 987
Time: 2.429 ms
COPY 7
Time: 0.188 ms
COPY 11
Time: 0.165 ms
COPY 6
Time: 0.165 ms
COPY 8
Time: 0.176 ms
COPY 5
Time: 0.168 ms
COPY 1
Time: 0.130 ms
COPY 1
Time: 0.153 ms
COPY 6
Time: 0.139 ms
COPY 25
Time: 0.264 ms
COPY 8
Time: 0.173 ms
COPY 7
Time: 0.225 ms
COPY 39
Time: 0.201 ms
COPY 93
Time: 0.485 ms
COPY 2
Time: 0.139 ms
COPY 2
Time: 0.135 ms
COPY 9
Time: 0.169 ms
COPY 5
Time: 0.167 ms
COPY 10
Time: 0.177 ms
COPY 55
Time: 0.456 ms
COPY 3
Time: 0.146 ms
COPY 3
Time: 0.255 ms
COPY 7
Time: 0.174 ms
COPY 1
Time: 0.144 ms
COPY 304
Time: 0.919 ms
COPY 45
Time: 0.255 ms
COPY 89
Time: 0.377 ms
COPY 1
Time: 0.151 ms
COPY 4
Time: 0.276 ms
COPY 43
Time: 0.247 ms
COPY 614
Time: 1.776 ms
COPY 63
Time: 0.321 ms
COPY 218
Time: 0.807 ms
COPY 771
Time: 2.017 ms
COPY 1157
Time: 3.005 ms
COPY 150
Time: 3.251 ms
COPY 446
Time: 1.572 ms
COPY 203
Time: 1.581 ms
COPY 37
Time: 0.238 ms
COPY 47
Time: 0.272 ms
COPY 2
Time: 0.190 ms
COPY 85
Time: 0.337 ms
COPY 76
Time: 0.427 ms
COPY 43
Time: 0.255 ms
COPY 9
Time: 0.179 ms
COPY 15
Time: 0.171 ms
COPY 29
Time: 0.319 ms
COPY 10
Time: 0.163 ms
COPY 181
Time: 0.495 ms
COPY 16
Time: 0.219 ms
COPY 535
Time: 1.466 ms
COPY 16
Time: 0.180 ms
COPY 19
Time: 0.204 ms
COPY 5
Time: 0.164 ms
COPY 13
Time: 0.184 ms
COPY 18
Time: 0.254 ms
COPY 78
Time: 0.558 ms
COPY 12
Time: 0.200 ms
COPY 53
Time: 0.412 ms
COPY 9
Time: 0.170 ms
COPY 4
Time: 0.241 ms
COPY 26
Time: 0.238 ms
COPY 40
Time: 0.310 ms
COPY 16
Time: 0.165 ms
COPY 468
Time: 1.468 ms
COPY 130
Time: 0.428 ms
COPY 16
Time: 0.179 ms
COPY 18
Time: 0.414 ms
COPY 1
Time: 0.150 ms
COPY 16
Time: 0.187 ms
COPY 148
Time: 0.614 ms
COPY 193
Time: 0.862 ms
COPY 2
Time: 0.135 ms
COPY 5
Time: 0.136 ms
COPY 4
Time: 0.137 ms
COPY 2
Time: 0.137 ms
COPY 38
Time: 0.271 ms
COPY 6
Time: 0.151 ms
COPY 14
Time: 0.249 ms
COPY 9
Time: 0.145 ms
COPY 4
Time: 0.153 ms
COPY 13
Time: 0.196 ms
COPY 125
Time: 0.737 ms
COPY 10
Time: 0.162 ms
COPY 14
Time: 0.197 ms
COPY 4
Time: 0.274 ms
COPY 1
Time: 0.144 ms
COPY 5
Time: 0.132 ms
COPY 26
Time: 0.202 ms
COPY 1614
Time: 3.769 ms
COPY 24
Time: 0.251 ms
COPY 6
Time: 0.153 ms
COPY 16
Time: 0.192 ms
COPY 22
Time: 0.189 ms
COPY 24
Time: 0.189 ms
COPY 2
Time: 0.133 ms
COPY 12
Time: 0.214 ms
COPY 10
Time: 0.168 ms
COPY 12
Time: 0.214 ms
COPY 889
Time: 2.394 ms
COPY 14
Time: 0.162 ms
COPY 37
Time: 0.201 ms
COPY 8
Time: 0.155 ms
COPY 763
Time: 2.001 ms
COPY 1848
Time: 28.099 ms
COPY 1
Time: 0.268 ms
COPY 11
Time: 0.208 ms
COPY 5
Time: 0.181 ms
COPY 5
Time: 0.221 ms
COPY 9
Time: 0.185 ms
COPY 10
Time: 0.291 ms
COPY 9
Time: 0.269 ms
COPY 7
Time: 0.176 ms
COPY 225
Time: 0.928 ms
COPY 468
Time: 1.967 ms
COPY 2
Time: 0.197 ms
COPY 40
Time: 0.306 ms
COPY 97
Time: 0.581 ms
COPY 3
Time: 0.193 ms
COPY 36
Time: 0.297 ms
COPY 16
Time: 0.214 ms
COPY 1
Time: 0.168 ms
COPY 13
Time: 0.206 ms
COPY 8
Time: 0.170 ms
COPY 1
Time: 0.143 ms
COPY 1
Time: 0.150 ms
COPY 287
Time: 1.267 ms
COPY 5
Time: 0.169 ms
COPY 8
Time: 0.232 ms
COPY 12
Time: 0.217 ms
COPY 1751
Time: 4.741 ms
COPY 2989
Time: 6.606 ms
COPY 644
Time: 1.848 ms
COPY 3
Time: 0.155 ms
COPY 1
Time: 0.250 ms
COPY 23
Time: 0.258 ms
COPY 1
Time: 0.126 ms
COPY 1
Time: 0.184 ms
COPY 3
Time: 0.212 ms
COPY 8
Time: 0.159 ms
COPY 6
Time: 0.150 ms
COPY 2
Time: 0.178 ms
COPY 17
Time: 0.224 ms
COPY 1
Time: 0.141 ms
COPY 9
Time: 0.145 ms
COPY 765
Time: 1.978 ms
COPY 3191
Time: 6.503 ms
COPY 174
Time: 0.621 ms
COPY 1
Time: 0.210 ms
COPY 1460
Time: 3.262 ms
COPY 3
Time: 0.152 ms
COPY 1937
Time: 4.339 ms
COPY 4
Time: 0.164 ms
COPY 5573
Time: 35.479 ms
COPY 2234
Time: 16.630 ms
COPY 160
Time: 0.805 ms
COPY 4374
Time: 13.221 ms
COPY 2
Time: 0.228 ms
COPY 5
Time: 0.249 ms
COPY 3
Time: 0.172 ms
COPY 68
Time: 0.413 ms
COPY 18
Time: 0.251 ms
COPY 1
Time: 0.165 ms
COPY 1
Time: 0.268 ms
COPY 1
Time: 0.213 ms
COPY 2
Time: 0.169 ms
COPY 7
Time: 0.187 ms
COPY 101
Time: 0.462 ms
COPY 2
Time: 0.178 ms
COPY 11
Time: 0.343 ms
COPY 475
Time: 2.016 ms
COPY 2262
Time: 6.995 ms
COPY 550
Time: 2.674 ms
COPY 607
Time: 1.697 ms
COPY 13
Time: 0.263 ms
COPY 14
Time: 0.163 ms
CREATE TABLE
Time: 4.204 ms
COPY 459
Time: 1.505 ms
COPY 724
Time: 2.111 ms
COPY 786
Time: 2.681 ms
COPY 340
Time: 1.306 ms
COPY 147
Time: 1.459 ms
COPY 1
Time: 0.169 ms
COPY 75
Time: 0.834 ms
COPY 3
Time: 0.154 ms
COPY 5
Time: 0.129 ms
COPY 8
Time: 0.136 ms
COPY 5
Time: 0.173 ms
COPY 8
Time: 0.181 ms
COPY 3
Time: 0.152 ms
COPY 10
Time: 0.147 ms
COPY 13
Time: 0.153 ms
COPY 2
Time: 0.148 ms
COPY 19
Time: 0.179 ms
COPY 5
Time: 0.132 ms
COPY 3
Time: 0.193 ms
COPY 19
Time: 0.160 ms
COPY 12
Time: 0.206 ms
COPY 8
Time: 17.375 ms
COPY 15
Time: 0.277 ms
COPY 9
Time: 0.267 ms
COPY 4
Time: 0.160 ms
COPY 1192
Time: 3.094 ms
COPY 6
Time: 0.187 ms
COPY 22
Time: 0.185 ms
COPY 5
Time: 0.141 ms
COPY 2
Time: 0.813 ms
COPY 5
Time: 0.246 ms
COPY 10
Time: 0.208 ms
COPY 6
Time: 0.159 ms
COPY 4
Time: 0.139 ms
COPY 4
Time: 0.154 ms
COPY 1
Time: 0.209 ms
COPY 77
Time: 0.561 ms
COPY 49
Time: 0.445 ms
COPY 5
Time: 0.164 ms
COPY 47
Time: 0.239 ms
COPY 208
Time: 0.868 ms
COPY 32
Time: 0.379 ms
COPY 456
Time: 1.554 ms
COPY 916
Time: 3.775 ms
COPY 75
Time: 0.442 ms
COPY 133
Time: 0.454 ms
COPY 866
Time: 2.245 ms
COPY 189
Time: 0.657 ms
COPY 6
Time: 0.194 ms
COPY 4
Time: 0.171 ms
COPY 4
Time: 0.148 ms
COPY 16
Time: 0.183 ms
COPY 10
Time: 0.175 ms
COPY 3
Time: 0.153 ms
COPY 6
Time: 0.153 ms
COPY 20
Time: 3.508 ms
COPY 4
Time: 0.192 ms
COPY 1
Time: 0.244 ms
COPY 4
Time: 0.198 ms
COPY 4
Time: 0.182 ms
COPY 1
Time: 0.134 ms
COPY 2
Time: 0.186 ms
COPY 5
Time: 0.142 ms
COPY 2236
Time: 5.041 ms
COPY 11
Time: 0.192 ms
COPY 1536
Time: 3.574 ms
COPY 510
Time: 1.463 ms
COPY 2
Time: 0.177 ms
COPY 22
Time: 0.184 ms
COPY 4
Time: 0.156 ms
COPY 7
Time: 0.155 ms
COPY 4
Time: 0.138 ms
COPY 10
Time: 0.177 ms
COPY 38
Time: 0.231 ms
COPY 1
Time: 0.130 ms
COPY 2
Time: 0.124 ms
COPY 98
Time: 0.406 ms
COPY 3
Time: 0.130 ms
COPY 2
Time: 0.122 ms
COPY 20
Time: 0.175 ms
COPY 99
Time: 0.345 ms
COPY 62
Time: 1.236 ms
COPY 8
Time: 0.169 ms
COPY 2
Time: 0.229 ms
COPY 3
Time: 0.204 ms
COPY 21
Time: 0.199 ms
COPY 1
Time: 0.207 ms
COPY 10
Time: 0.239 ms
COPY 2
Time: 0.149 ms
COPY 17
Time: 0.260 ms
COPY 2
Time: 0.875 ms
COPY 149
Time: 0.765 ms
COPY 6
Time: 0.143 ms
COPY 131
Time: 0.525 ms
COPY 39
Time: 0.576 ms
COPY 6602
Time: 44.851 ms
COPY 28
Time: 0.376 ms
COPY 15
Time: 0.260 ms
COPY 895
Time: 3.786 ms
COPY 12
Time: 0.187 ms
COPY 826
Time: 2.429 ms
COPY 20
Time: 0.230 ms
COPY 3251
Time: 9.816 ms
COPY 39
Time: 0.329 ms
COPY 144
Time: 0.549 ms
COPY 1
Time: 0.149 ms
COPY 27
Time: 0.188 ms
COPY 2
Time: 0.136 ms
COPY 8
Time: 0.156 ms
COPY 13
Time: 0.209 ms
COPY 25
Time: 0.241 ms
COPY 8
Time: 0.195 ms
COPY 1621
Time: 4.456 ms
COPY 5296
Time: 13.424 ms
COPY 4441
Time: 45.755 ms
COPY 31
Time: 0.406 ms
COPY 632
Time: 2.648 ms
COPY 567
Time: 3.200 ms
COPY 14674
Time: 32.176 ms
COPY 3903
Time: 37.978 ms
COPY 55
Time: 0.347 ms
COPY 1779
Time: 5.508 ms
COPY 612
Time: 2.049 ms
COPY 2849
Time: 8.870 ms
COPY 240
Time: 0.861 ms
COPY 1997
Time: 5.049 ms
COPY 397
Time: 1.127 ms
COPY 8
Time: 0.157 ms
COPY 915
Time: 2.658 ms
COPY 31
Time: 0.241 ms
COPY 521
Time: 1.758 ms
COPY 286
Time: 1.007 ms
COPY 1635
Time: 4.783 ms
COPY 9
Time: 0.192 ms
COPY 13
Time: 0.168 ms
COPY 8
Time: 0.189 ms
COPY 14
Time: 0.172 ms
COPY 16
Time: 0.160 ms
COPY 10
Time: 0.159 ms
COPY 4714
Time: 12.646 ms
COPY 602
Time: 25.313 ms
COPY 188
Time: 0.966 ms
COPY 2929
Time: 10.981 ms
COPY 8802
Time: 37.170 ms
COPY 2450
Time: 9.409 ms
COPY 572
Time: 2.297 ms
COPY 1
Time: 0.168 ms
COPY 1
Time: 0.140 ms
COPY 1
Time: 0.162 ms
COPY 3
Time: 0.134 ms
COPY 5
Time: 0.140 ms
COPY 19
Time: 0.178 ms
COPY 674
Time: 2.007 ms
COPY 5
Time: 0.174 ms
COPY 2
Time: 0.188 ms
COPY 205
Time: 0.736 ms
COPY 20
Time: 0.186 ms
COPY 2202
Time: 22.139 ms
COPY 8
Time: 0.344 ms
COPY 1
Time: 0.159 ms
COPY 17
Time: 0.175 ms
COPY 2
Time: 0.140 ms
COPY 2
Time: 0.157 ms
COPY 4
Time: 0.154 ms
COPY 10
Time: 3.531 ms
COPY 676
Time: 2.458 ms
COPY 9
Time: 0.216 ms
COPY 2824
Time: 7.671 ms
COPY 4
Time: 0.197 ms
COPY 17
Time: 0.178 ms
COPY 717
Time: 2.127 ms
COPY 166
Time: 2.034 ms
COPY 6
Time: 0.178 ms
COPY 1
Time: 0.266 ms
COPY 2
Time: 0.142 ms
COPY 14
Time: 0.166 ms
COPY 3
Time: 0.206 ms
COPY 87
Time: 0.360 ms
COPY 2
Time: 0.145 ms
COPY 1
Time: 0.207 ms
COPY 7
Time: 0.154 ms
COPY 2
Time: 0.158 ms
COPY 1
Time: 0.178 ms
COPY 22
Time: 0.261 ms
COPY 4
Time: 0.243 ms
COPY 4
Time: 0.132 ms
COPY 3
Time: 0.125 ms
COPY 63
Time: 0.404 ms
COPY 9
Time: 0.877 ms
CREATE TABLE
Time: 3.767 ms
COPY 5710
Time: 11.993 ms
COPY 1149
Time: 2.793 ms
COPY 9464
Time: 45.031 ms
COPY 2997
Time: 7.864 ms
COPY 8747
Time: 16.992 ms
COPY 1349
Time: 5.515 ms
COPY 41465
Time: 172.672 ms
COPY 2661
Time: 36.183 ms
COPY 5229
Time: 18.095 ms
COPY 758
Time: 2.411 ms
COPY 601
Time: 2.307 ms
COPY 272
Time: 0.928 ms
COPY 1373
Time: 3.169 ms
COPY 4596
Time: 17.890 ms
COPY 528
Time: 1.771 ms
COPY 15641
Time: 57.867 ms
COPY 250
Time: 0.867 ms
COPY 451
Time: 1.310 ms
COPY 323
Time: 0.966 ms
COPY 3236
Time: 6.546 ms
COPY 953
Time: 2.260 ms
COPY 588
Time: 1.673 ms
COPY 41
Time: 0.252 ms
COPY 40
Time: 0.299 ms
COPY 5
Time: 0.140 ms
COPY 3037
Time: 7.038 ms
COPY 956
Time: 28.332 ms
COPY 2909
Time: 6.458 ms
COPY 4387
Time: 11.382 ms
COPY 729
Time: 2.032 ms
COPY 9600
Time: 25.390 ms
COPY 230
Time: 0.846 ms
COPY 2353
Time: 28.062 ms
COPY 3077
Time: 10.670 ms
COPY 121
Time: 0.642 ms
CREATE TABLE
Time: 13.393 ms
COPY 237
Time: 0.965 ms
COPY 411
Time: 1.261 ms
COPY 200
Time: 0.691 ms
COPY 214
Time: 2.342 ms
COPY 1591
Time: 4.361 ms
COPY 87
Time: 0.342 ms
COPY 49
Time: 0.252 ms
COPY 1486
Time: 3.454 ms
COPY 9341
Time: 17.614 ms
COPY 319
Time: 20.601 ms
COPY 1394
Time: 4.996 ms
COPY 2041
Time: 7.531 ms
COPY 2132
Time: 6.525 ms
COPY 174
Time: 0.814 ms
COPY 9
Time: 0.194 ms
COPY 22
Time: 0.211 ms
COPY 13
Time: 0.191 ms
COPY 6
Time: 0.163 ms
COPY 19
Time: 0.192 ms
COPY 5
Time: 0.273 ms
COPY 393
Time: 1.461 ms
COPY 24
Time: 0.223 ms
COPY 4
Time: 0.170 ms
COPY 6
Time: 0.213 ms
COPY 24
Time: 0.198 ms
COPY 8
Time: 0.182 ms
COPY 8
Time: 0.167 ms
COPY 14
Time: 0.291 ms
COPY 586
Time: 2.044 ms
COPY 26
Time: 0.235 ms
COPY 1480
Time: 3.385 ms
COPY 9
Time: 0.195 ms
COPY 1166
Time: 2.947 ms
COPY 576
Time: 1.664 ms
COPY 2130
Time: 6.961 ms
COPY 8
Time: 0.237 ms
COPY 13
Time: 0.316 ms
COPY 6
Time: 0.266 ms
COPY 744
Time: 2.504 ms
COPY 9
Time: 0.163 ms
COPY 8
Time: 0.137 ms
COPY 9
Time: 0.129 ms
COPY 33
Time: 0.223 ms
COPY 12
Time: 0.182 ms
COPY 36
Time: 0.246 ms
COPY 19
Time: 0.161 ms
COPY 73
Time: 0.458 ms
COPY 32
Time: 1.810 ms
COPY 156
Time: 2.101 ms
COPY 4
Time: 0.192 ms
COPY 4
Time: 0.153 ms
COPY 175
Time: 0.697 ms
COPY 16
Time: 0.178 ms
COPY 580
Time: 1.642 ms
COPY 1425
Time: 4.665 ms
COPY 88
Time: 29.321 ms
COPY 22
Time: 0.383 ms
COPY 968
Time: 3.496 ms
COPY 701
Time: 2.677 ms
COPY 601
Time: 2.165 ms
COPY 27
Time: 0.285 ms
COPY 1472
Time: 4.607 ms
COPY 6326
Time: 12.095 ms
COPY 497
Time: 1.689 ms
COPY 3901
Time: 9.998 ms
COPY 287
Time: 1.145 ms
COPY 6797
Time: 65.145 ms
COPY 1632
Time: 10.154 ms
COPY 41869
Time: 146.616 ms
COPY 29
Time: 0.322 ms
COPY 2083
Time: 3.938 ms
COPY 20
Time: 0.206 ms
COPY 204
Time: 0.501 ms
COPY 2
Time: 0.184 ms
COPY 13
Time: 0.206 ms
COPY 23
Time: 0.175 ms
CREATE TABLE
Time: 6.914 ms
COPY 1490
Time: 6.694 ms
COPY 3483
Time: 11.945 ms
COPY 1619
Time: 40.297 ms
COPY 4230
Time: 16.882 ms
COPY 13181
Time: 37.798 ms
COPY 12019
Time: 58.585 ms
COPY 12408
Time: 82.464 ms
COPY 1801
Time: 8.030 ms
COPY 476
Time: 2.667 ms
COPY 21970
Time: 85.499 ms
COPY 2443
Time: 9.562 ms
COPY 1179
Time: 27.997 ms
COPY 41
Time: 4.844 ms
COPY 5569
Time: 22.463 ms
COPY 221
Time: 1.023 ms
COPY 428
Time: 1.382 ms
COPY 327
Time: 1.072 ms
COPY 2232
Time: 6.312 ms
COPY 1667
Time: 7.142 ms
COPY 691
Time: 1.930 ms
COPY 1126
Time: 3.014 ms
COPY 10
Time: 0.195 ms
COPY 2
Time: 0.153 ms
COPY 11
Time: 0.275 ms
COPY 13
Time: 37.741 ms
COPY 432
Time: 3.620 ms
COPY 26
Time: 0.376 ms
COPY 1545
Time: 13.117 ms
CREATE TABLE
Time: 5.437 ms
COPY 60052
Time: 268.879 ms
COPY 6027
Time: 38.069 ms
COPY 27617
Time: 127.798 ms
COPY 8975
Time: 20.083 ms
COPY 10327
Time: 42.373 ms
COPY 5248
Time: 10.951 ms
COPY 8981
Time: 49.756 ms
COPY 2
Time: 0.294 ms
CREATE TABLE
Time: 3.472 ms
COPY 38
Time: 0.417 ms
COPY 5
Time: 0.213 ms
COPY 5
Time: 0.179 ms
COPY 4
Time: 0.192 ms
COPY 1
Time: 0.267 ms
COPY 6
Time: 0.199 ms
COPY 6
Time: 0.169 ms
COPY 111
Time: 0.568 ms
COPY 14
Time: 0.210 ms
COPY 303
Time: 1.652 ms
COPY 7
Time: 0.190 ms
COPY 60
Time: 0.297 ms
COPY 192
Time: 0.829 ms
COPY 1
Time: 0.147 ms
COPY 52
Time: 0.343 ms
COPY 4
Time: 0.163 ms
COPY 8
Time: 0.230 ms
COPY 117
Time: 0.568 ms
COPY 11
Time: 0.166 ms
COPY 322
Time: 1.448 ms
COPY 5
Time: 0.169 ms
COPY 457
Time: 2.161 ms
COPY 9
Time: 0.176 ms
COPY 27
Time: 0.202 ms
COPY 4
Time: 0.160 ms
COPY 5
Time: 0.151 ms
COPY 210
Time: 0.885 ms
COPY 1
Time: 0.212 ms
COPY 9
Time: 0.146 ms
COPY 6
Time: 0.156 ms
COPY 10
Time: 0.242 ms
COPY 1
Time: 0.161 ms
COPY 29
Time: 0.178 ms
COPY 7
Time: 0.161 ms
COPY 44
Time: 0.273 ms
COPY 15
Time: 0.250 ms
COPY 19
Time: 0.186 ms
COPY 26
Time: 0.247 ms
COPY 233
Time: 0.658 ms
COPY 1369
Time: 5.889 ms
COPY 7463
Time: 52.009 ms
COPY 3414
Time: 12.663 ms
COPY 5613
Time: 12.053 ms
COPY 1575
Time: 6.591 ms
COPY 795
Time: 2.662 ms
COPY 1214
Time: 3.580 ms
COPY 13558
Time: 65.124 ms
COPY 407
Time: 1.551 ms
COPY 300
Time: 1.226 ms
COPY 239
Time: 0.931 ms
COPY 1247
Time: 3.754 ms
COPY 2598
Time: 6.031 ms
COPY 806
Time: 2.869 ms
CREATE TABLE
Time: 4.931 ms
COPY 5542
Time: 43.693 ms
COPY 6155
Time: 32.462 ms
COPY 9987
Time: 45.789 ms
COPY 5761
Time: 16.131 ms
COPY 9178
Time: 20.158 ms
COPY 5649
Time: 39.718 ms
COPY 69259
Time: 305.132 ms
CREATE TABLE
Time: 20.969 ms
COPY 20927
Time: 90.608 ms
COPY 1410
Time: 6.763 ms
COPY 5940
Time: 15.330 ms
COPY 11044
Time: 74.873 ms
COPY 3730
Time: 13.685 ms
COPY 1622
Time: 5.352 ms
COPY 11238
Time: 53.570 ms
CREATE TABLE
Time: 3.867 ms
COPY 2391
Time: 8.578 ms
COPY 832
Time: 2.849 ms
COPY 2224
Time: 10.344 ms
COPY 7247
Time: 51.990 ms
COPY 1658
Time: 6.347 ms
COPY 2721
Time: 8.362 ms
COPY 1033
Time: 6.933 ms
COPY 115
Time: 0.736 ms
COPY 54
Time: 0.427 ms
COPY 1647
Time: 5.807 ms
COPY 151
Time: 0.567 ms
COPY 849
Time: 3.600 ms
COPY 473
Time: 9.894 ms
COPY 1479
Time: 37.637 ms
COPY 9019
Time: 35.417 ms
COPY 1832
Time: 6.165 ms
COPY 26326
Time: 109.291 ms
COPY 5491
Time: 20.359 ms
COPY 8592
Time: 35.843 ms
COPY 16430
Time: 75.650 ms
COPY 48039
Time: 241.657 ms
CREATE TABLE
Time: 4.035 ms
COPY 3997
Time: 12.018 ms
COPY 1060
Time: 4.263 ms
COPY 515
Time: 2.026 ms
COPY 1043
Time: 4.335 ms
COPY 16
Time: 0.275 ms
COPY 1418
Time: 29.175 ms
COPY 675
Time: 3.106 ms
COPY 1111
Time: 4.352 ms
COPY 2250
Time: 8.043 ms
COPY 46
Time: 0.374 ms
COPY 41
Time: 0.298 ms
COPY 394
Time: 1.513 ms
COPY 2805
Time: 7.538 ms
COPY 60
Time: 0.423 ms
COPY 793
Time: 2.697 ms
COPY 1350
Time: 3.856 ms
COPY 406
Time: 1.762 ms
COPY 193
Time: 0.896 ms
COPY 3712
Time: 19.637 ms
COPY 962
Time: 3.482 ms
COPY 2718
Time: 28.789 ms
COPY 42
Time: 0.416 ms
COPY 393
Time: 1.422 ms
COPY 43
Time: 0.349 ms
COPY 1203
Time: 3.985 ms
COPY 185
Time: 1.185 ms
COPY 13
Time: 0.245 ms
COPY 63
Time: 0.406 ms
COPY 143
Time: 0.681 ms
COPY 3113
Time: 10.638 ms
COPY 46
Time: 0.408 ms
COPY 555
Time: 2.111 ms
COPY 12
Time: 0.239 ms
COPY 48
Time: 0.348 ms
COPY 1
Time: 0.164 ms
COPY 37
Time: 0.280 ms
COPY 38
Time: 0.276 ms
COPY 29
Time: 0.277 ms
COPY 22
Time: 0.234 ms
COPY 58
Time: 0.360 ms
COPY 103
Time: 0.496 ms
COPY 282
Time: 0.977 ms
COPY 10
Time: 0.279 ms
COPY 746
Time: 2.683 ms
COPY 746
Time: 2.668 ms
COPY 776
Time: 2.863 ms
COPY 25
Time: 0.422 ms
COPY 136
Time: 0.571 ms
COPY 185
Time: 0.946 ms
CREATE TABLE
Time: 3.952 ms
COPY 33103
Time: 169.356 ms
COPY 61739
Time: 356.361 ms
COPY 15338
Time: 104.925 ms
COPY 11392
Time: 57.756 ms
COPY 6990
Time: 81.298 ms
COPY 51642
Time: 343.764 ms
COPY 16316
Time: 91.808 ms
CREATE TABLE
Time: 4.606 ms
COPY 10542
Time: 82.941 ms
COPY 7717
Time: 39.507 ms
COPY 4830
Time: 24.183 ms
COPY 9854
Time: 80.803 ms
COPY 12460
Time: 62.344 ms
COPY 24158
Time: 144.688 ms
COPY 10381
Time: 56.435 ms
COPY 397
Time: 3.049 ms
COPY 376
Time: 2.427 ms
COPY 5673
Time: 29.407 ms
COPY 4400
Time: 42.826 ms
COPY 379
Time: 2.830 ms
COPY 407
Time: 2.216 ms
COPY 13035
Time: 49.174 ms
COPY 1224
Time: 6.470 ms
COPY 1839
Time: 9.421 ms
COPY 8675
Time: 81.456 ms
CREATE TABLE
Time: 6.904 ms
COPY 22198
Time: 121.137 ms
COPY 8965
Time: 46.560 ms
COPY 34613
Time: 231.964 ms
COPY 10681
Time: 48.109 ms
COPY 34758
Time: 267.183 ms
COPY 11721
Time: 90.435 ms
COPY 21377
Time: 118.712 ms
ALTER TABLE
Time: 13.555 ms
ALTER TABLE
Time: 22.416 ms
ALTER TABLE
Time: 31.076 ms
ALTER TABLE
Time: 22.635 ms
ALTER TABLE
Time: 15.577 ms
ALTER TABLE
Time: 24.715 ms
ALTER TABLE
Time: 25.460 ms
ALTER TABLE
Time: 27.014 ms
ALTER TABLE
Time: 14.029 ms
ALTER TABLE
Time: 33.971 ms
ALTER TABLE
Time: 9.461 ms
ALTER TABLE
Time: 46.199 ms
ALTER TABLE
Time: 21.696 ms
ALTER TABLE
Time: 63.985 ms
COMMIT
Time: 39.653 ms
SET
Timing is on.
BEGIN
Time: 0.020 ms
CREATE TABLE
Time: 6.550 ms
COPY 58179
Time: 264.186 ms
COPY 15665
Time: 64.615 ms
COPY 17578
Time: 40.781 ms
COPY 25287
Time: 87.729 ms
COPY 51004
Time: 243.051 ms
COPY 14360
Time: 57.354 ms
COPY 14434
Time: 55.580 ms
CREATE TABLE
Time: 3.733 ms
COPY 6136
Time: 15.786 ms
COPY 11153
Time: 24.152 ms
COPY 9741
Time: 81.789 ms
COPY 32189
Time: 147.445 ms
COPY 5256
Time: 13.239 ms
COPY 7687
Time: 42.652 ms
COPY 4714
Time: 19.182 ms
CREATE TABLE
Time: 3.479 ms
COPY 19075
Time: 67.957 ms
COPY 2153
Time: 5.879 ms
COPY 74742
Time: 342.178 ms
COPY 8820
Time: 23.423 ms
COPY 14992
Time: 59.068 ms
COPY 5623
Time: 37.863 ms
COPY 6083
Time: 20.791 ms
CREATE TABLE
Time: 3.713 ms
COPY 482
Time: 1.481 ms
COPY 1549
Time: 6.960 ms
COPY 8652
Time: 69.986 ms
COPY 218
Time: 1.645 ms
COPY 454
Time: 2.458 ms
COPY 4656
Time: 15.596 ms
COPY 4227
Time: 12.102 ms
CREATE TABLE
Time: 7.368 ms
COPY 8808
Time: 52.628 ms
COPY 16253
Time: 102.246 ms
COPY 15190
Time: 72.964 ms
COPY 18840
Time: 70.190 ms
COPY 2904
Time: 9.975 ms
COPY 4168
Time: 12.559 ms
COPY 16955
Time: 135.199 ms
CREATE TABLE
Time: 3.489 ms
COPY 4240
Time: 11.983 ms
COPY 20598
Time: 103.522 ms
COPY 3669
Time: 9.423 ms
COPY 7113
Time: 37.466 ms
COPY 26779
Time: 95.156 ms
COPY 4353
Time: 11.499 ms
COPY 57775
Time: 312.322 ms
CREATE TABLE
Time: 3.895 ms
COPY 770
Time: 3.900 ms
COPY 2220
Time: 6.353 ms
COPY 3891
Time: 14.654 ms
COPY 14944
Time: 69.759 ms
COPY 1493
Time: 3.979 ms
COPY 77
Time: 0.552 ms
COPY 1184
Time: 5.494 ms
COPY 1670
Time: 30.051 ms
COPY 3771
Time: 14.811 ms
COPY 5844
Time: 30.771 ms
COPY 41
Time: 0.406 ms
COPY 800
Time: 2.844 ms
COPY 174
Time: 0.803 ms
COPY 2711
Time: 6.678 ms
CREATE TABLE
Time: 3.734 ms
COPY 29690
Time: 122.369 ms
COPY 48174
Time: 249.043 ms
COPY 9903
Time: 33.349 ms
COPY 11020
Time: 50.758 ms
COPY 10794
Time: 25.354 ms
COPY 6567
Time: 52.738 ms
COPY 40542
Time: 164.812 ms
CREATE TABLE
Time: 4.804 ms
COPY 2130
Time: 5.905 ms
COPY 2614
Time: 7.038 ms
COPY 12432
Time: 62.421 ms
COPY 5731
Time: 16.751 ms
COPY 34074
Time: 163.367 ms
COPY 6117
Time: 49.169 ms
COPY 395831
Time: 2794.125 ms (00:02.794)
CREATE TABLE
Time: 8.845 ms
COPY 807
Time: 6.329 ms
COPY 368
Time: 2.593 ms
COPY 1454
Time: 35.519 ms
COPY 125
Time: 0.782 ms
COPY 2223
Time: 9.735 ms
COPY 3412
Time: 26.518 ms
COPY 12129
Time: 191.967 ms
COPY 7957
Time: 75.421 ms
COPY 5665
Time: 30.807 ms
COPY 6552
Time: 61.264 ms
COPY 10145
Time: 67.198 ms
COPY 10836
Time: 78.419 ms
COPY 13676
Time: 80.398 ms
COPY 3234
Time: 20.741 ms
CREATE TABLE
Time: 4.422 ms
COPY 1433
Time: 32.324 ms
COPY 2893
Time: 39.770 ms
COPY 7596
Time: 36.678 ms
COPY 8151
Time: 53.396 ms
COPY 6282
Time: 32.407 ms
COPY 1411
Time: 8.870 ms
COPY 5338
Time: 72.434 ms
COPY 2849
Time: 18.424 ms
COPY 2837
Time: 17.470 ms
COPY 3
Time: 2.392 ms
COPY 2561
Time: 11.027 ms
COPY 998
Time: 6.483 ms
COPY 1700
Time: 17.723 ms
COPY 635
Time: 4.187 ms
COPY 361
Time: 2.488 ms
CREATE TABLE
Time: 4.290 ms
COPY 5787
Time: 29.910 ms
COPY 21414
Time: 117.810 ms
COPY 32613
Time: 235.158 ms
COPY 7806
Time: 43.049 ms
COPY 449
Time: 2.395 ms
COPY 518
Time: 3.287 ms
COPY 2615
Time: 15.594 ms
COPY 64
Time: 1.245 ms
COPY 24
Time: 0.736 ms
COPY 32
Time: 1.071 ms
COPY 27
Time: 0.648 ms
COPY 154
Time: 1.789 ms
COPY 302
Time: 1.879 ms
COPY 60
Time: 0.644 ms
COPY 6
Time: 0.269 ms
COPY 2
Time: 0.238 ms
COPY 10
Time: 0.276 ms
COPY 17
Time: 0.327 ms
COPY 16
Time: 0.332 ms
COPY 19
Time: 0.422 ms
COPY 46663
Time: 355.489 ms
COPY 27
Time: 0.469 ms
COPY 2685
Time: 12.599 ms
COPY 1370
Time: 7.648 ms
COPY 1226
Time: 7.074 ms
COPY 446
Time: 2.833 ms
COPY 382
Time: 2.759 ms
COPY 72
Time: 0.725 ms
COPY 25
Time: 0.502 ms
COPY 229
Time: 1.758 ms
COPY 8
Time: 0.278 ms
COPY 132
Time: 1.166 ms
COPY 14
Time: 0.667 ms
COPY 236
Time: 3.164 ms
CREATE TABLE
Time: 7.232 ms
COPY 5770
Time: 30.499 ms
COPY 1390
Time: 28.583 ms
COPY 250
Time: 1.936 ms
COPY 56
Time: 0.597 ms
COPY 5584
Time: 25.821 ms
COPY 17958
Time: 108.791 ms
COPY 4092
Time: 43.441 ms
COPY 1
Time: 0.265 ms
COPY 3
Time: 0.237 ms
COPY 3
Time: 0.258 ms
COPY 416
Time: 2.329 ms
COPY 1588
Time: 8.871 ms
COPY 116
Time: 0.814 ms
COPY 859
Time: 5.582 ms
COPY 58
Time: 0.834 ms
COPY 1079
Time: 5.154 ms
COPY 1678
Time: 8.974 ms
COPY 1507
Time: 8.473 ms
CREATE TABLE
Time: 5.658 ms
COPY 43481
Time: 274.762 ms
COPY 79972
Time: 648.122 ms
COPY 24478
Time: 114.675 ms
COPY 31601
Time: 200.256 ms
COPY 14537
Time: 90.692 ms
COPY 38720
Time: 240.547 ms
COPY 20485
Time: 145.014 ms
ALTER TABLE
Time: 49.340 ms
ALTER TABLE
Time: 17.405 ms
ALTER TABLE
Time: 52.021 ms
ALTER TABLE
Time: 12.976 ms
ALTER TABLE
Time: 20.652 ms
ALTER TABLE
Time: 30.173 ms
ALTER TABLE
Time: 10.635 ms
ALTER TABLE
Time: 37.315 ms
ALTER TABLE
Time: 150.921 ms
ALTER TABLE
Time: 19.564 ms
ALTER TABLE
Time: 11.591 ms
ALTER TABLE
Time: 29.891 ms
ALTER TABLE
Time: 10.740 ms
ALTER TABLE
Time: 48.226 ms
COMMIT
Time: 38.637 ms
SET
Timing is on.
BEGIN
Time: 0.020 ms
CREATE TABLE
Time: 4.655 ms
COPY 63326
Time: 195.698 ms
COPY 27106
Time: 153.280 ms
COPY 41756
Time: 150.801 ms
COPY 19368
Time: 78.899 ms
COPY 80382
Time: 357.006 ms
COPY 35980
Time: 157.077 ms
COPY 33890
Time: 158.023 ms
CREATE TABLE
Time: 4.776 ms
COPY 34920
Time: 140.595 ms
COPY 32864
Time: 108.391 ms
COPY 16767
Time: 80.842 ms
COPY 33550
Time: 126.666 ms
COPY 25686
Time: 117.208 ms
COPY 23049
Time: 82.512 ms
COPY 24032
Time: 116.130 ms
CREATE TABLE
Time: 17.522 ms
COPY 49312
Time: 188.035 ms
COPY 27019
Time: 96.521 ms
COPY 14975
Time: 70.818 ms
COPY 15194
Time: 43.585 ms
COPY 28985
Time: 110.559 ms
COPY 15261
Time: 95.291 ms
COPY 59630
Time: 308.860 ms
CREATE TABLE
Time: 3.982 ms
COPY 10870
Time: 31.218 ms
COPY 8864
Time: 63.784 ms
COPY 10894
Time: 49.869 ms
COPY 13688
Time: 38.658 ms
COPY 6773
Time: 48.580 ms
COPY 6448
Time: 17.716 ms
COPY 16297
Time: 108.052 ms
CREATE TABLE
Time: 3.674 ms
COPY 42720
Time: 169.710 ms
COPY 16178
Time: 60.104 ms
COPY 536984
Time: 3876.682 ms (00:03.877)
COPY 30598
Time: 229.517 ms
COPY 13792
Time: 81.001 ms
COPY 9590
Time: 48.724 ms
COPY 20071
Time: 151.800 ms
CREATE TABLE
Time: 11.661 ms
COPY 8696
Time: 56.742 ms
COPY 27777
Time: 168.832 ms
COPY 2990
Time: 15.400 ms
COPY 14827
Time: 62.109 ms
COPY 6226
Time: 44.282 ms
COPY 5557
Time: 56.589 ms
COPY 346
Time: 3.147 ms
COPY 277
Time: 1.667 ms
COPY 487
Time: 2.591 ms
COPY 464
Time: 3.219 ms
COPY 1064
Time: 5.188 ms
COPY 784
Time: 4.242 ms
COPY 2
Time: 0.245 ms
COPY 74
Time: 0.517 ms
COPY 1
Time: 0.210 ms
COPY 4
Time: 0.212 ms
COPY 4
Time: 0.207 ms
COPY 548
Time: 2.892 ms
COPY 11
Time: 0.426 ms
COPY 3
Time: 0.232 ms
COPY 641
Time: 3.805 ms
COPY 156
Time: 1.131 ms
COPY 63
Time: 0.637 ms
COPY 2605
Time: 11.782 ms
COPY 77
Time: 0.681 ms
COPY 596
Time: 4.066 ms
COPY 27
Time: 0.360 ms
COPY 6
Time: 0.251 ms
COPY 628
Time: 3.715 ms
COPY 82
Time: 0.719 ms
COPY 91
Time: 0.671 ms
COPY 10
Time: 0.254 ms
COPY 13
Time: 0.389 ms
COPY 700
Time: 3.744 ms
COPY 229
Time: 1.221 ms
COPY 3389
Time: 17.711 ms
COPY 94
Time: 0.674 ms
COPY 6
Time: 0.252 ms
COPY 496
Time: 2.799 ms
COPY 11
Time: 0.258 ms
COPY 2
Time: 0.211 ms
COPY 8
Time: 0.211 ms
COPY 2573
Time: 12.868 ms
COPY 6
Time: 0.285 ms
COPY 22
Time: 0.300 ms
COPY 448
Time: 2.781 ms
COPY 2287
Time: 10.664 ms
COPY 266
Time: 50.810 ms
COPY 1255
Time: 6.407 ms
COPY 9
Time: 0.352 ms
COPY 49
Time: 0.436 ms
COPY 397
Time: 2.569 ms
COPY 53
Time: 0.506 ms
COPY 124
Time: 0.875 ms
COPY 232
Time: 1.412 ms
COPY 209
Time: 1.186 ms
COPY 50
Time: 0.597 ms
COPY 27
Time: 0.318 ms
COPY 12
Time: 0.282 ms
COPY 486
Time: 2.721 ms
COPY 522
Time: 3.177 ms
COPY 244
Time: 1.899 ms
COPY 44
Time: 0.484 ms
COPY 5
Time: 0.246 ms
COPY 565
Time: 3.343 ms
COPY 824
Time: 4.163 ms
COPY 323
Time: 1.847 ms
COPY 1
Time: 0.382 ms
COPY 6
Time: 0.236 ms
COPY 11
Time: 0.245 ms
COPY 1
Time: 0.200 ms
COPY 278
Time: 1.520 ms
COPY 15
Time: 0.333 ms
COPY 4
Time: 0.228 ms
COPY 33
Time: 0.432 ms
COPY 823
Time: 4.571 ms
COPY 606
Time: 3.618 ms
COPY 311
Time: 1.997 ms
COPY 190
Time: 1.352 ms
COPY 130
Time: 0.862 ms
COPY 119
Time: 0.861 ms
COPY 147
Time: 1.048 ms
COPY 192
Time: 2.114 ms
COPY 19
Time: 1.426 ms
COPY 193
Time: 1.413 ms
COPY 20
Time: 0.352 ms
COPY 15
Time: 0.264 ms
COPY 13
Time: 0.259 ms
COPY 11
Time: 0.331 ms
COPY 26
Time: 0.298 ms
COPY 39
Time: 0.394 ms
COPY 13
Time: 0.244 ms
COPY 25
Time: 0.843 ms
COPY 104
Time: 1.104 ms
COPY 2987
Time: 15.011 ms
COPY 83
Time: 0.711 ms
COPY 503
Time: 7.326 ms
COPY 2293
Time: 14.749 ms
COPY 2373
Time: 10.573 ms
COPY 40
Time: 0.694 ms
COPY 86
Time: 0.862 ms
COPY 33
Time: 0.633 ms
COPY 66
Time: 0.914 ms
COPY 7
Time: 0.315 ms
COPY 1814
Time: 8.879 ms
COPY 44
Time: 0.533 ms
COPY 3474
Time: 47.728 ms
COPY 388
Time: 2.503 ms
COPY 3558
Time: 17.543 ms
COPY 635
Time: 2.993 ms
COPY 5062
Time: 39.952 ms
CREATE TABLE
Time: 4.115 ms
COPY 44
Time: 0.567 ms
COPY 317
Time: 2.158 ms
COPY 691
Time: 4.021 ms
COPY 208
Time: 1.535 ms
COPY 16
Time: 0.464 ms
COPY 74
Time: 0.675 ms
COPY 319
Time: 2.650 ms
COPY 1014
Time: 5.623 ms
COPY 1600
Time: 8.207 ms
COPY 14
Time: 0.322 ms
COPY 181
Time: 1.425 ms
COPY 630
Time: 4.113 ms
COPY 638
Time: 3.704 ms
COPY 268
Time: 2.361 ms
COPY 71
Time: 0.612 ms
COPY 114
Time: 0.857 ms
COPY 25
Time: 0.311 ms
COPY 199
Time: 1.560 ms
COPY 10395
Time: 104.744 ms
COPY 13014
Time: 121.954 ms
COPY 128
Time: 24.769 ms
COPY 1275
Time: 6.349 ms
COPY 719
Time: 4.853 ms
COPY 1826
Time: 9.946 ms
COPY 277
Time: 1.806 ms
COPY 17
Time: 0.343 ms
COPY 1255
Time: 7.050 ms
COPY 1
Time: 0.229 ms
COPY 149
Time: 1.085 ms
COPY 11
Time: 0.324 ms
COPY 12
Time: 0.284 ms
COPY 6
Time: 0.229 ms
COPY 613
Time: 3.476 ms
COPY 15
Time: 0.314 ms
COPY 75
Time: 0.612 ms
COPY 38
Time: 0.526 ms
COPY 469
Time: 3.403 ms
COPY 815
Time: 4.448 ms
COPY 57
Time: 0.490 ms
COPY 46
Time: 0.442 ms
COPY 179
Time: 1.265 ms
COPY 456
Time: 2.881 ms
COPY 249
Time: 2.555 ms
COPY 105
Time: 1.485 ms
COPY 26
Time: 0.415 ms
COPY 7
Time: 0.312 ms
COPY 643
Time: 4.417 ms
COPY 734
Time: 3.983 ms
COPY 1181
Time: 5.531 ms
COPY 745
Time: 3.999 ms
COPY 24
Time: 0.360 ms
COPY 10
Time: 0.282 ms
COPY 16
Time: 0.396 ms
COPY 62
Time: 0.492 ms
COPY 7
Time: 0.261 ms
COPY 22
Time: 0.361 ms
COPY 24
Time: 0.332 ms
COPY 1
Time: 0.184 ms
COPY 200
Time: 1.295 ms
COPY 25
Time: 0.403 ms
COPY 4
Time: 0.224 ms
COPY 41
Time: 0.416 ms
COPY 172
Time: 1.132 ms
COPY 8
Time: 0.291 ms
COPY 6
Time: 0.221 ms
COPY 104
Time: 0.917 ms
COPY 520
Time: 3.151 ms
COPY 10
Time: 0.311 ms
COPY 22
Time: 0.286 ms
COPY 457
Time: 2.647 ms
COPY 2
Time: 0.236 ms
COPY 1
Time: 0.207 ms
COPY 308
Time: 1.861 ms
COPY 1224
Time: 17.443 ms
COPY 2
Time: 0.259 ms
COPY 373
Time: 2.467 ms
COPY 641
Time: 3.518 ms
COPY 184
Time: 1.009 ms
COPY 338
Time: 2.339 ms
COPY 4
Time: 0.240 ms
COPY 12
Time: 0.270 ms
COPY 301
Time: 2.207 ms
COPY 1071
Time: 5.436 ms
COPY 2340
Time: 12.248 ms
COPY 767
Time: 3.773 ms
COPY 142
Time: 1.508 ms
COPY 144
Time: 0.847 ms
COPY 254
Time: 1.474 ms
COPY 1621
Time: 34.334 ms
COPY 179
Time: 1.315 ms
COPY 8
Time: 0.289 ms
COPY 654
Time: 7.170 ms
COPY 728
Time: 4.587 ms
COPY 469
Time: 3.397 ms
COPY 74
Time: 0.641 ms
COPY 397
Time: 2.836 ms
COPY 24
Time: 0.446 ms
COPY 244
Time: 1.772 ms
COPY 17
Time: 0.309 ms
COPY 552
Time: 3.367 ms
COPY 11
Time: 0.281 ms
COPY 49
Time: 0.663 ms
COPY 13
Time: 0.340 ms
CREATE TABLE
Time: 4.337 ms
COPY 4
Time: 0.358 ms
COPY 5
Time: 0.232 ms
COPY 522
Time: 3.691 ms
COPY 606
Time: 3.389 ms
COPY 4
Time: 0.265 ms
COPY 2
Time: 0.211 ms
COPY 94
Time: 1.045 ms
COPY 13
Time: 0.273 ms
COPY 6
Time: 0.244 ms
COPY 1700
Time: 8.025 ms
COPY 448
Time: 2.921 ms
COPY 343
Time: 1.777 ms
COPY 4
Time: 0.254 ms
COPY 583
Time: 3.220 ms
COPY 277
Time: 1.431 ms
COPY 678
Time: 3.805 ms
COPY 2
Time: 0.238 ms
COPY 46
Time: 0.461 ms
COPY 177
Time: 1.237 ms
COPY 4256
Time: 36.694 ms
COPY 435
Time: 2.453 ms
COPY 37
Time: 0.514 ms
COPY 1
Time: 0.211 ms
COPY 130
Time: 2.527 ms
COPY 135
Time: 1.056 ms
COPY 8
Time: 0.257 ms
COPY 2
Time: 0.207 ms
COPY 108
Time: 0.835 ms
COPY 3
Time: 0.231 ms
COPY 1
Time: 0.185 ms
COPY 9
Time: 0.233 ms
COPY 9
Time: 0.236 ms
COPY 1
Time: 0.200 ms
COPY 5
Time: 0.258 ms
COPY 94
Time: 0.746 ms
COPY 11
Time: 0.261 ms
COPY 482
Time: 3.272 ms
COPY 2
Time: 0.231 ms
COPY 335
Time: 2.179 ms
COPY 188
Time: 1.413 ms
COPY 51
Time: 0.412 ms
COPY 1429
Time: 17.978 ms
COPY 547
Time: 3.995 ms
COPY 3450
Time: 53.903 ms
COPY 1410
Time: 15.788 ms
COPY 5840
Time: 22.604 ms
COPY 2976
Time: 13.169 ms
COPY 3429
Time: 13.749 ms
COPY 15
Time: 0.400 ms
COPY 44
Time: 0.459 ms
COPY 40
Time: 0.533 ms
COPY 3966
Time: 28.623 ms
COPY 2
Time: 0.348 ms
COPY 6427
Time: 87.993 ms
COPY 145
Time: 1.070 ms
COPY 4902
Time: 19.832 ms
COPY 3744
Time: 14.815 ms
COPY 587
Time: 3.361 ms
COPY 6
Time: 0.264 ms
COPY 2384
Time: 10.397 ms
COPY 627
Time: 3.488 ms
COPY 470
Time: 2.829 ms
COPY 336
Time: 2.146 ms
COPY 183
Time: 1.113 ms
COPY 19
Time: 0.330 ms
COPY 6
Time: 0.226 ms
COPY 898
Time: 4.889 ms
COPY 5
Time: 0.295 ms
COPY 1766
Time: 7.544 ms
COPY 117
Time: 0.885 ms
COPY 660
Time: 3.705 ms
COPY 970
Time: 5.021 ms
COPY 115
Time: 1.035 ms
COPY 1
Time: 0.223 ms
COPY 1095
Time: 5.186 ms
COPY 1
Time: 0.235 ms
COPY 211
Time: 1.173 ms
COPY 13
Time: 0.270 ms
COPY 3
Time: 0.260 ms
COPY 4
Time: 0.246 ms
COPY 21
Time: 0.302 ms
COPY 40
Time: 0.450 ms
COPY 915
Time: 14.099 ms
COPY 67
Time: 0.746 ms
COPY 613
Time: 3.545 ms
COPY 207
Time: 1.332 ms
COPY 8418
Time: 175.005 ms
COPY 109
Time: 1.032 ms
COPY 1
Time: 0.354 ms
COPY 95
Time: 0.792 ms
COPY 53
Time: 0.447 ms
COPY 195
Time: 1.097 ms
COPY 61
Time: 0.661 ms
COPY 57
Time: 0.598 ms
COPY 298
Time: 6.966 ms
COPY 852
Time: 5.094 ms
COPY 225
Time: 1.433 ms
COPY 165
Time: 1.192 ms
COPY 97
Time: 0.615 ms
COPY 55
Time: 0.503 ms
COPY 40
Time: 0.420 ms
COPY 1
Time: 0.218 ms
COPY 427
Time: 2.535 ms
COPY 79
Time: 0.587 ms
COPY 934
Time: 4.507 ms
COPY 3
Time: 0.328 ms
COPY 1
Time: 0.215 ms
COPY 110
Time: 1.141 ms
COPY 95
Time: 1.018 ms
COPY 39
Time: 0.387 ms
COPY 4
Time: 0.273 ms
COPY 4
Time: 0.270 ms
COPY 1
Time: 0.213 ms
COPY 6
Time: 0.254 ms
COPY 1
Time: 0.227 ms
COPY 1
Time: 0.239 ms
COPY 4
Time: 0.207 ms
COPY 2
Time: 0.104 ms
COPY 3
Time: 0.110 ms
COPY 1
Time: 0.095 ms
COPY 1
Time: 0.166 ms
COPY 172
Time: 1.363 ms
COPY 37
Time: 0.393 ms
COPY 185
Time: 1.582 ms
COPY 190
Time: 1.444 ms
COPY 31
Time: 0.402 ms
COPY 95
Time: 0.880 ms
COPY 98
Time: 1.038 ms
COPY 128
Time: 1.271 ms
COPY 14
Time: 0.298 ms
COPY 5
Time: 0.247 ms
COPY 6
Time: 0.266 ms
COPY 1
Time: 0.203 ms
COPY 1
Time: 0.208 ms
COPY 32
Time: 0.332 ms
COPY 35
Time: 0.347 ms
COPY 168
Time: 0.960 ms
COPY 17
Time: 0.344 ms
COPY 887
Time: 4.331 ms
COPY 450
Time: 2.809 ms
COPY 518
Time: 2.863 ms
COPY 61
Time: 0.484 ms
COPY 646
Time: 3.508 ms
COPY 14
Time: 0.293 ms
COPY 80
Time: 0.651 ms
COPY 138
Time: 0.961 ms
COPY 199
Time: 1.150 ms
COPY 652
Time: 4.011 ms
COPY 238
Time: 1.388 ms
COPY 2497
Time: 12.704 ms
COPY 2248
Time: 9.623 ms
COPY 58
Time: 0.605 ms
COPY 63
Time: 0.604 ms
COPY 11
Time: 0.262 ms
COPY 90
Time: 0.636 ms
COPY 528
Time: 28.299 ms
COPY 1
Time: 0.231 ms
COPY 7
Time: 0.189 ms
COPY 170
Time: 1.270 ms
COPY 24
Time: 0.375 ms
COPY 5
Time: 0.225 ms
COPY 2
Time: 0.197 ms
COPY 64
Time: 0.743 ms
COPY 1
Time: 0.202 ms
COPY 4
Time: 0.229 ms
COPY 6
Time: 0.264 ms
COPY 1
Time: 0.188 ms
COPY 4
Time: 0.219 ms
COPY 6
Time: 0.290 ms
COPY 471
Time: 2.609 ms
COPY 1391
Time: 6.147 ms
COPY 3
Time: 0.254 ms
COPY 556
Time: 3.191 ms
COPY 94
Time: 0.675 ms
COPY 719
Time: 3.970 ms
COPY 114
Time: 0.834 ms
COPY 23
Time: 0.361 ms
COPY 22
Time: 0.323 ms
COPY 52
Time: 0.474 ms
COPY 35
Time: 0.439 ms
COPY 8
Time: 0.217 ms
COPY 5
Time: 0.197 ms
COPY 4
Time: 0.214 ms
COPY 1
Time: 0.194 ms
COPY 42
Time: 0.472 ms
COPY 4
Time: 0.214 ms
COPY 5
Time: 0.231 ms
COPY 96
Time: 1.383 ms
COPY 58
Time: 0.453 ms
COPY 39
Time: 0.421 ms
COPY 7
Time: 0.241 ms
COPY 32
Time: 5.201 ms
COPY 9
Time: 0.323 ms
COPY 16
Time: 0.368 ms
COPY 7
Time: 0.252 ms
COPY 4
Time: 0.299 ms
COPY 18
Time: 0.335 ms
COPY 7
Time: 0.306 ms
CREATE TABLE
Time: 15.415 ms
COPY 10
Time: 0.384 ms
COPY 59
Time: 0.720 ms
COPY 6
Time: 0.252 ms
COPY 6
Time: 0.226 ms
COPY 15
Time: 0.302 ms
COPY 13
Time: 0.277 ms
COPY 1
Time: 0.212 ms
COPY 896
Time: 4.746 ms
COPY 7
Time: 0.354 ms
COPY 300
Time: 1.302 ms
COPY 46
Time: 0.509 ms
COPY 15
Time: 0.291 ms
COPY 28
Time: 0.317 ms
COPY 30
Time: 0.379 ms
COPY 1
Time: 0.236 ms
COPY 12
Time: 0.263 ms
COPY 299
Time: 1.745 ms
COPY 458
Time: 2.662 ms
COPY 150
Time: 1.254 ms
COPY 10
Time: 0.249 ms
COPY 4
Time: 0.242 ms
COPY 453
Time: 3.041 ms
COPY 2354
Time: 9.561 ms
COPY 7590
Time: 26.784 ms
COPY 26620
Time: 135.041 ms
COPY 1074
Time: 16.894 ms
COPY 3659
Time: 15.654 ms
COPY 1
Time: 0.266 ms
COPY 9804
Time: 37.573 ms
COPY 1
Time: 0.344 ms
COPY 8
Time: 0.275 ms
COPY 7
Time: 0.260 ms
COPY 2
Time: 0.197 ms
COPY 5
Time: 0.251 ms
COPY 876
Time: 4.508 ms
COPY 1284
Time: 5.913 ms
COPY 1254
Time: 26.842 ms
COPY 12
Time: 0.299 ms
COPY 2477
Time: 10.136 ms
COPY 2
Time: 0.237 ms
COPY 8
Time: 0.228 ms
COPY 4
Time: 0.239 ms
COPY 75
Time: 0.536 ms
COPY 504
Time: 4.061 ms
COPY 459
Time: 4.656 ms
COPY 685
Time: 4.971 ms
COPY 158
Time: 1.229 ms
COPY 6600
Time: 37.717 ms
COPY 203
Time: 1.265 ms
COPY 650
Time: 4.004 ms
COPY 128
Time: 0.852 ms
COPY 79
Time: 0.703 ms
COPY 447
Time: 2.896 ms
COPY 561
Time: 4.081 ms
COPY 4
Time: 0.228 ms
COPY 2
Time: 0.225 ms
COPY 5
Time: 0.246 ms
COPY 83
Time: 1.428 ms
COPY 39
Time: 0.643 ms
COPY 10
Time: 0.297 ms
COPY 1
Time: 0.231 ms
COPY 4296
Time: 44.616 ms
COPY 16902
Time: 122.626 ms
COPY 236
Time: 3.135 ms
COPY 393
Time: 2.665 ms
COPY 6609
Time: 100.732 ms
COPY 9823
Time: 58.233 ms
COPY 34
Time: 0.451 ms
COPY 5
Time: 0.263 ms
COPY 872
Time: 5.412 ms
COPY 2772
Time: 15.402 ms
COPY 38556
Time: 264.026 ms
COPY 255
Time: 1.864 ms
COPY 169
Time: 1.030 ms
COPY 178
Time: 29.932 ms
CREATE TABLE
Time: 3.993 ms
COPY 1197
Time: 6.522 ms
COPY 671
Time: 4.173 ms
COPY 6555
Time: 41.041 ms
COPY 6171
Time: 25.939 ms
CREATE TABLE
Time: 8.434 ms
COPY 6856
Time: 27.447 ms
COPY 5082
Time: 26.704 ms
COPY 1286
Time: 6.553 ms
COPY 19304
Time: 150.795 ms
COPY 4257
Time: 19.975 ms
COPY 4618
Time: 21.383 ms
COPY 619
Time: 3.726 ms
CREATE TABLE
Time: 4.204 ms
COPY 14486
Time: 62.614 ms
COPY 4826
Time: 23.747 ms
COPY 17192
Time: 72.111 ms
COPY 11593
Time: 51.252 ms
COPY 5014
Time: 23.989 ms
COPY 10650
Time: 218.076 ms
COPY 6983
Time: 58.429 ms
CREATE TABLE
Time: 10.510 ms
COPY 424
Time: 2.550 ms
COPY 390
Time: 2.192 ms
COPY 2038
Time: 10.470 ms
COPY 9036
Time: 38.926 ms
COPY 4460
Time: 56.526 ms
COPY 7674
Time: 49.768 ms
COPY 12013
Time: 59.610 ms
COPY 18738
Time: 129.478 ms
COPY 7210
Time: 41.058 ms
COPY 2183
Time: 13.397 ms
COPY 14796
Time: 98.319 ms
COPY 525
Time: 27.374 ms
COPY 327
Time: 2.242 ms
COPY 399
Time: 13.873 ms
COPY 7375
Time: 52.535 ms
COPY 15981
Time: 92.235 ms
COPY 2306
Time: 40.110 ms
COPY 281
Time: 1.591 ms
COPY 93
Time: 1.156 ms
CREATE TABLE
Time: 4.291 ms
COPY 3668
Time: 30.113 ms
COPY 52055
Time: 318.938 ms
COPY 1554
Time: 8.103 ms
COPY 963
Time: 6.312 ms
COPY 7061
Time: 32.219 ms
COPY 17
Time: 0.491 ms
COPY 5995
Time: 68.670 ms
COPY 7140
Time: 27.278 ms
COPY 2601
Time: 12.204 ms
COPY 8282
Time: 38.723 ms
COPY 8415
Time: 33.261 ms
COPY 7259
Time: 28.804 ms
COPY 3172
Time: 13.993 ms
COPY 480
Time: 2.584 ms
COPY 925
Time: 4.621 ms
COPY 497
Time: 2.674 ms
ALTER TABLE
Time: 90.722 ms
ALTER TABLE
Time: 45.514 ms
ALTER TABLE
Time: 50.250 ms
ALTER TABLE
Time: 19.054 ms
ALTER TABLE
Time: 250.552 ms
ALTER TABLE
Time: 28.708 ms
ALTER TABLE
Time: 14.766 ms
ALTER TABLE
Time: 23.391 ms
ALTER TABLE
Time: 34.321 ms
ALTER TABLE
Time: 4.809 ms
ALTER TABLE
Time: 10.680 ms
ALTER TABLE
Time: 20.625 ms
ALTER TABLE
Time: 28.526 ms
ALTER TABLE
Time: 28.688 ms
COMMIT
Time: 48.286 ms
Timing is on.
COPY 244853
Time: 25023.799 ms (00:25.024)
Timing is on.
COPY 244853
Time: 28755.917 ms (00:28.756)
Timing is on.
COPY 26226
Time: 13742.336 ms (00:13.742)
Timing is on.
COPY 244853
Time: 35146.339 ms (00:35.146)
Timing is on.
COPY 244853
Time: 58774.701 ms (00:58.775)
2023-02-10 10:24:53.544 UTC [50] LOG:  checkpoint starting: wal
SET
Timing is on.
BEGIN
Time: 0.014 ms
CREATE TABLE
Time: 3.980 ms
COPY 52321
Time: 846.166 ms
COPY 11745
Time: 329.693 ms
COPY 38658
Time: 1141.587 ms (00:01.142)
COPY 65131
Time: 1798.724 ms (00:01.799)
COPY 36808
Time: 1394.424 ms (00:01.394)
COPY 60398
Time: 1991.396 ms (00:01.991)
COPY 60480
Time: 2151.337 ms (00:02.151)
COPY 51743
Time: 2364.488 ms (00:02.364)
COPY 1759
Time: 346.536 ms
COPY 33668
Time: 1782.028 ms (00:01.782)
COPY 15424
Time: 1117.833 ms (00:01.118)
COPY 5385
Time: 500.715 ms
COPY 1096
Time: 192.390 ms
COPY 8420
Time: 479.714 ms
COPY 12895
Time: 646.487 ms
COPY 24985
Time: 1138.379 ms (00:01.138)
COPY 13
Time: 1.944 ms
COPY 20
Time: 2.091 ms
COPY 25
Time: 4.942 ms
COPY 534
Time: 17.711 ms
COPY 41008
Time: 1285.042 ms (00:01.285)
COPY 668
Time: 69.951 ms
COPY 208
Time: 28.886 ms
COPY 1505
Time: 76.669 ms
COPY 4133
Time: 463.982 ms
COPY 1130
Time: 104.056 ms
COPY 1903
Time: 101.990 ms
COPY 1
Time: 0.441 ms
COPY 2
Time: 0.287 ms
COPY 2170
Time: 624.859 ms
COPY 220
Time: 14.278 ms
COPY 1552
Time: 196.131 ms
COPY 46
Time: 25.671 ms
COPY 65
Time: 27.323 ms
COPY 11
Time: 8.169 ms
COPY 11374
Time: 744.458 ms
COPY 2555
Time: 345.658 ms
COPY 15902
Time: 1003.963 ms (00:01.004)
COPY 1612
Time: 184.858 ms
COPY 11397
Time: 1924.405 ms (00:01.924)
COPY 8682
Time: 2524.383 ms (00:02.524)
COPY 100529
Time: 3756.006 ms (00:03.756)
COPY 387
Time: 35.008 ms
COPY 314
Time: 88.524 ms
COPY 913
Time: 201.191 ms
COPY 2550
Time: 443.985 ms
COPY 1732
Time: 184.855 ms
COPY 10032
Time: 396.001 ms
COPY 960
Time: 183.265 ms
CREATE TABLE
Time: 16.783 ms
COPY 8185
Time: 646.402 ms
COPY 735
Time: 70.621 ms
COPY 10921
Time: 3563.162 ms (00:03.563)
COPY 2847
Time: 228.404 ms
COPY 3452
Time: 635.312 ms
COPY 13883
Time: 769.005 ms
COPY 18609
Time: 5747.534 ms (00:05.748)
COPY 27191
Time: 954.960 ms
COPY 98087
Time: 2024.581 ms (00:02.025)
COPY 1956
Time: 61.323 ms
COPY 7542
Time: 270.045 ms
COPY 12278
Time: 884.067 ms
COPY 9650
Time: 433.580 ms
COPY 37889
Time: 1765.539 ms (00:01.766)
COPY 1879
Time: 123.190 ms
COPY 2478
Time: 267.304 ms
COPY 70
Time: 35.563 ms
COPY 226
Time: 108.730 ms
COPY 9454
Time: 291.389 ms
COPY 2342
Time: 106.224 ms
COPY 13216
Time: 540.383 ms
COPY 1014
Time: 28.959 ms
COPY 60
Time: 5.214 ms
COPY 584
Time: 84.681 ms
COPY 1552
Time: 129.688 ms
COPY 394
Time: 14.147 ms
COPY 5320
Time: 224.121 ms
COPY 982
Time: 86.155 ms
COPY 4588
Time: 408.292 ms
COPY 598
Time: 88.930 ms
COPY 2923
Time: 425.982 ms
COPY 6404
Time: 579.529 ms
COPY 1001
Time: 59.626 ms
COPY 440
Time: 50.578 ms
COPY 1299
Time: 198.114 ms
COPY 11627
Time: 394.494 ms
COPY 112
Time: 32.885 ms
COPY 2887
Time: 260.650 ms
COPY 4456
Time: 452.169 ms
COPY 673
Time: 38.439 ms
COPY 4704
Time: 119.166 ms
COPY 1050
Time: 132.352 ms
COPY 6309
Time: 547.520 ms
COPY 198537
Time: 5730.741 ms (00:05.731)
COPY 7792
Time: 846.857 ms
COPY 14858
Time: 737.193 ms
COPY 50580
Time: 1455.366 ms (00:01.455)
COPY 38969
Time: 1804.286 ms (00:01.804)
COPY 1099
Time: 62.194 ms
CREATE TABLE
Time: 8.178 ms
COPY 1250
Time: 165.193 ms
COPY 92733
Time: 2933.258 ms (00:02.933)
COPY 102374
Time: 4677.078 ms (00:04.677)
COPY 5
Time: 0.471 ms
COPY 54
Time: 3.298 ms
COPY 51
Time: 5.617 ms
COPY 41
Time: 4.191 ms
COPY 30
Time: 2.042 ms
COPY 33092
Time: 2705.628 ms (00:02.706)
COPY 160259
Time: 4564.603 ms (00:04.565)
COPY 27174
Time: 2759.586 ms (00:02.760)
COPY 23480
Time: 1448.114 ms (00:01.448)
COPY 375139
Time: 9936.608 ms (00:09.937)
COPY 6
Time: 0.842 ms
COPY 20
Time: 1.971 ms
COPY 2
Time: 0.383 ms
COPY 3
Time: 1.030 ms
COPY 2
Time: 1.174 ms
COPY 4
Time: 0.664 ms
COPY 34
Time: 3.299 ms
COPY 1
Time: 0.283 ms
COPY 108135
Time: 2815.692 ms (00:02.816)
COPY 14
Time: 1.907 ms
COPY 14862
Time: 527.929 ms
COPY 1866
Time: 113.132 ms
COPY 16167
Time: 336.537 ms
COPY 6604
Time: 274.595 ms
COPY 15195
Time: 286.936 ms
COPY 27
Time: 1.566 ms
CREATE TABLE
Time: 6.781 ms
COPY 5587
Time: 178.077 ms
COPY 1
Time: 0.269 ms
COPY 108607
Time: 2242.850 ms (00:02.243)
COPY 56781
Time: 1141.083 ms (00:01.141)
COPY 3761
Time: 68.640 ms
COPY 265009
Time: 8097.880 ms (00:08.098)
COPY 15
Time: 5.155 ms
COPY 9
Time: 1.049 ms
COPY 69
Time: 5.059 ms
COPY 38
Time: 8.133 ms
COPY 8
Time: 0.431 ms
COPY 1
Time: 0.205 ms
COPY 10
Time: 2.809 ms
COPY 11
Time: 2.635 ms
COPY 3
Time: 2.013 ms
COPY 38
Time: 1.524 ms
COPY 4
Time: 0.437 ms
COPY 57
Time: 11.944 ms
COPY 71
Time: 3.626 ms
COPY 59
Time: 4.510 ms
COPY 45
Time: 2.395 ms
COPY 61
Time: 4.125 ms
COPY 64
Time: 5.275 ms
COPY 65
Time: 5.005 ms
COPY 161512
Time: 4913.667 ms (00:04.914)
COPY 100608
Time: 3145.335 ms (00:03.145)
COPY 496
Time: 8.266 ms
COPY 246613
Time: 6045.445 ms (00:06.045)
COPY 76
Time: 4.519 ms
CREATE TABLE
Time: 8.198 ms
COPY 83524
Time: 2633.829 ms (00:02.634)
COPY 64940
Time: 1872.537 ms (00:01.873)
COPY 76906
Time: 2560.943 ms (00:02.561)
COPY 30966
Time: 1100.455 ms (00:01.100)
COPY 459577
Time: 12472.376 ms (00:12.472)
COPY 210188
Time: 6619.542 ms (00:06.620)
COPY 117368
Time: 2687.109 ms (00:02.687)
CREATE TABLE
Time: 86.905 ms
COPY 285743
Time: 8839.537 ms (00:08.840)
COPY 23055
Time: 801.595 ms
COPY 13725
Time: 432.163 ms
COPY 43554
Time: 1444.891 ms (00:01.445)
COPY 45021
Time: 1588.247 ms (00:01.588)
COPY 80928
Time: 3277.744 ms (00:03.278)
COPY 22162
Time: 905.661 ms
CREATE TABLE
Time: 7.534 ms
COPY 204684
Time: 7358.602 ms (00:07.359)
COPY 232053
Time: 5733.135 ms (00:05.733)
COPY 35002
Time: 2131.651 ms (00:02.132)
COPY 199390
Time: 6786.271 ms (00:06.786)
COPY 295989
Time: 8192.842 ms (00:08.193)
COPY 310131
Time: 7568.413 ms (00:07.568)
COPY 191318
Time: 5688.677 ms (00:05.689)
CREATE TABLE
Time: 7.472 ms
COPY 14150
Time: 552.744 ms
COPY 7070
Time: 214.765 ms
COPY 48723
Time: 1323.312 ms (00:01.323)
COPY 6293
Time: 205.360 ms
COPY 53533
Time: 1466.441 ms (00:01.466)
COPY 31522
Time: 1061.867 ms (00:01.062)
COPY 126136
Time: 3315.168 ms (00:03.315)
COPY 16098
Time: 801.840 ms
COPY 14769
Time: 632.470 ms
COPY 70156
Time: 2743.182 ms (00:02.743)
COPY 119457
Time: 4282.070 ms (00:04.282)
COPY 14138
Time: 635.847 ms
COPY 29054
Time: 1427.876 ms (00:01.428)
COPY 64156
Time: 2523.900 ms (00:02.524)
COPY 123257
Time: 4165.670 ms (00:04.166)
COPY 54983
Time: 1866.291 ms (00:01.866)
CREATE TABLE
Time: 8.031 ms
COPY 90282
Time: 1987.493 ms (00:01.987)
COPY 231029
Time: 6782.983 ms (00:06.783)
COPY 293443
Time: 8100.216 ms (00:08.100)
COPY 465612
Time: 11725.375 ms (00:11.725)
COPY 12772
Time: 296.369 ms
COPY 12744
Time: 297.539 ms
COPY 90219
Time: 2821.305 ms (00:02.821)
COPY 22
Time: 21.809 ms
COPY 110
Time: 46.954 ms
COPY 25
Time: 17.414 ms
COPY 1247
Time: 59.452 ms
COPY 50
Time: 24.398 ms
COPY 13
Time: 10.848 ms
COPY 10
Time: 46.609 ms
COPY 190
Time: 4.944 ms
COPY 1644
Time: 73.981 ms
COPY 34
Time: 19.934 ms
COPY 245
Time: 16.123 ms
COPY 428
Time: 25.938 ms
COPY 711
Time: 121.150 ms
COPY 16
Time: 13.183 ms
COPY 408
Time: 42.028 ms
COPY 6
Time: 4.074 ms
CREATE TABLE
Time: 9.308 ms
COPY 101996
Time: 2873.018 ms (00:02.873)
COPY 3871
Time: 188.523 ms
COPY 5584
Time: 341.254 ms
COPY 5502
Time: 284.027 ms
COPY 2916
Time: 236.038 ms
COPY 1192
Time: 438.300 ms
COPY 8
Time: 0.585 ms
COPY 13968
Time: 607.249 ms
COPY 6521
Time: 209.819 ms
COPY 323
Time: 18.309 ms
COPY 16921
Time: 1348.729 ms (00:01.349)
COPY 4769
Time: 545.807 ms
COPY 7700
Time: 659.285 ms
COPY 10
Time: 5.111 ms
COPY 3
Time: 4.109 ms
COPY 9404
Time: 945.539 ms
COPY 8
Time: 0.836 ms
COPY 1828
Time: 211.863 ms
COPY 240
Time: 12.403 ms
COPY 224
Time: 30.946 ms
COPY 291
Time: 81.178 ms
COPY 3461
Time: 88.646 ms
COPY 22728
Time: 793.189 ms
COPY 2998
Time: 125.735 ms
COPY 2133
Time: 166.469 ms
COPY 54038
Time: 1629.181 ms (00:01.629)
COPY 89659
Time: 2528.750 ms (00:02.529)
COPY 36631
Time: 899.356 ms
COPY 8530
Time: 225.637 ms
COPY 7191
Time: 275.123 ms
COPY 32554
Time: 911.397 ms
COPY 2587
Time: 190.577 ms
COPY 1300
Time: 53.855 ms
COPY 2132
Time: 200.971 ms
COPY 1608
Time: 91.385 ms
COPY 1053
Time: 92.195 ms
COPY 1226
Time: 78.544 ms
COPY 3235
Time: 123.375 ms
COPY 13772
Time: 414.749 ms
COPY 70966
Time: 1853.237 ms (00:01.853)
COPY 4078
Time: 73.524 ms
COPY 951
Time: 118.006 ms
COPY 6735
Time: 249.889 ms
COPY 1231
Time: 52.349 ms
COPY 20
Time: 7.563 ms
COPY 40
Time: 24.204 ms
COPY 2
Time: 0.409 ms
COPY 4548
Time: 80.928 ms
COPY 7627
Time: 253.750 ms
COPY 2
Time: 0.438 ms
COPY 16
Time: 99.254 ms
COPY 8
Time: 15.448 ms
COPY 11
Time: 9.162 ms
COPY 15
Time: 3.926 ms
COPY 59
Time: 5.883 ms
COPY 3
Time: 1.444 ms
COPY 257
Time: 35.669 ms
COPY 12
Time: 3.178 ms
COPY 15
Time: 6.421 ms
COPY 41
Time: 8.340 ms
COPY 9
Time: 5.605 ms
COPY 37
Time: 11.844 ms
COPY 178
Time: 25.716 ms
COPY 18
Time: 4.459 ms
COPY 66
Time: 20.359 ms
COPY 10
Time: 4.503 ms
COPY 3
Time: 1.254 ms
COPY 81
Time: 9.101 ms
COPY 11911
Time: 407.958 ms
COPY 20
Time: 4.928 ms
COPY 1
Time: 0.250 ms
COPY 10835
Time: 389.063 ms
COPY 1
Time: 1.927 ms
COPY 54
Time: 7.299 ms
COPY 330581
Time: 8360.160 ms (00:08.360)
COPY 44821
Time: 1107.303 ms (00:01.107)
COPY 19879
Time: 981.261 ms
ALTER TABLE
Time: 1617.657 ms (00:01.618)
ALTER TABLE
Time: 1749.266 ms (00:01.749)
ALTER TABLE
Time: 2596.536 ms (00:02.597)
ALTER TABLE
Time: 2229.250 ms (00:02.229)
ALTER TABLE
Time: 2650.210 ms (00:02.650)
ALTER TABLE
Time: 1530.863 ms (00:01.531)
ALTER TABLE
Time: 2371.918 ms (00:02.372)
ALTER TABLE
Time: 933.943 ms
ALTER TABLE
Time: 1298.474 ms (00:01.298)
ALTER TABLE
Time: 928.671 ms
COMMIT
Time: 75.613 ms
SET
Timing is on.
BEGIN
Time: 0.032 ms
CREATE TABLE
Time: 4.472 ms
COPY 381162
Time: 8637.702 ms (00:08.638)
COPY 175624
Time: 6568.429 ms (00:06.568)
COPY 101283
Time: 3313.855 ms (00:03.314)
COPY 147620
Time: 5926.650 ms (00:05.927)
COPY 308108
Time: 9601.505 ms (00:09.602)
COPY 152460
Time: 5986.608 ms (00:05.987)
COPY 114830
Time: 3850.073 ms (00:03.850)
CREATE TABLE
Time: 8.766 ms
COPY 64422
Time: 2628.492 ms (00:02.628)
COPY 86786
Time: 2824.189 ms (00:02.824)
COPY 49606
Time: 2111.962 ms (00:02.112)
COPY 305805
Time: 7107.733 ms (00:07.108)
COPY 73320
Time: 2370.828 ms (00:02.371)
COPY 87567
Time: 2404.958 ms (00:02.405)
COPY 40471
Time: 1500.070 ms (00:01.500)
CREATE TABLE
Time: 8.341 ms
COPY 85899
Time: 3191.183 ms (00:03.191)
COPY 30009
Time: 1399.348 ms (00:01.399)
COPY 339604
Time: 9395.594 ms (00:09.396)
COPY 114218
Time: 3981.751 ms (00:03.982)
COPY 124277
Time: 3475.776 ms (00:03.476)
COPY 32869
Time: 1185.684 ms (00:01.186)
COPY 102647
Time: 3828.810 ms (00:03.829)
CREATE TABLE
Time: 8.063 ms
COPY 10520
Time: 590.186 ms
COPY 17951
Time: 1344.792 ms (00:01.345)
COPY 79578
Time: 2197.496 ms (00:02.197)
COPY 3940
Time: 300.858 ms
COPY 3424
Time: 193.347 ms
COPY 35299
Time: 2082.049 ms (00:02.082)
COPY 36147
Time: 1387.602 ms (00:01.388)
CREATE TABLE
Time: 7.694 ms
COPY 123001
Time: 3011.706 ms (00:03.012)
COPY 145005
Time: 3721.693 ms (00:03.722)
COPY 115817
Time: 3321.770 ms (00:03.322)
COPY 162795
Time: 3971.911 ms (00:03.972)
COPY 97865
Time: 3067.415 ms (00:03.067)
COPY 73949
Time: 2306.278 ms (00:02.306)
COPY 202294
Time: 7091.879 ms (00:07.092)
CREATE TABLE
Time: 8.242 ms
COPY 78430
Time: 3135.437 ms (00:03.135)
COPY 138462
Time: 4256.337 ms (00:04.256)
COPY 56366
Time: 2040.920 ms (00:02.041)
COPY 116810
Time: 3272.123 ms (00:03.272)
COPY 269505
Time: 9803.196 ms (00:09.803)
COPY 69589
Time: 2606.911 ms (00:02.607)
COPY 355354
Time: 9369.755 ms (00:09.370)
CREATE TABLE
Time: 7.347 ms
COPY 24285
Time: 623.942 ms
COPY 32171
Time: 1299.301 ms (00:01.299)
COPY 81890
Time: 2987.562 ms (00:02.988)
COPY 105800
Time: 3661.619 ms (00:03.662)
COPY 6676
Time: 344.442 ms
COPY 3443
Time: 394.557 ms
COPY 36971
Time: 1334.553 ms (00:01.335)
COPY 10508
Time: 414.055 ms
COPY 37103
Time: 1516.429 ms (00:01.516)
COPY 57592
Time: 1645.838 ms (00:01.646)
COPY 717
Time: 202.450 ms
COPY 2862
Time: 261.896 ms
COPY 2373
Time: 244.087 ms
COPY 15713
Time: 491.509 ms
CREATE TABLE
Time: 7.720 ms
COPY 212051
Time: 6273.260 ms (00:06.273)
COPY 318818
Time: 8697.371 ms (00:08.697)
COPY 141165
Time: 3580.452 ms (00:03.580)
COPY 102611
Time: 3305.765 ms (00:03.306)
COPY 80232
Time: 2930.592 ms (00:02.931)
COPY 94211
Time: 3778.545 ms (00:03.779)
COPY 217344
Time: 6863.009 ms (00:06.863)
CREATE TABLE
Time: 7.544 ms
COPY 17915
Time: 698.068 ms
COPY 59527
Time: 1980.098 ms (00:01.980)
COPY 113679
Time: 3388.720 ms (00:03.389)
COPY 74716
Time: 2990.692 ms (00:02.991)
COPY 254859
Time: 7225.810 ms (00:07.226)
COPY 116156
Time: 4506.860 ms (00:04.507)
COPY 1122924
Time: 29303.095 ms (00:29.303)
CREATE TABLE
Time: 8.035 ms
COPY 26537
Time: 1188.667 ms (00:01.189)
COPY 19388
Time: 843.190 ms
COPY 22844
Time: 1160.665 ms (00:01.161)
COPY 5434
Time: 357.072 ms
COPY 59857
Time: 3113.965 ms (00:03.114)
COPY 90022
Time: 2961.355 ms (00:02.961)
COPY 101910
Time: 3058.950 ms (00:03.059)
COPY 55879
Time: 2194.704 ms (00:02.195)
COPY 59223
Time: 2499.391 ms (00:02.499)
COPY 46905
Time: 1879.991 ms (00:01.880)
COPY 97003
Time: 3614.364 ms (00:03.614)
COPY 61675
Time: 1991.413 ms (00:01.991)
COPY 93954
Time: 2348.968 ms (00:02.349)
COPY 19057
Time: 964.837 ms
CREATE TABLE
Time: 8.470 ms
COPY 21057
Time: 732.181 ms
COPY 21546
Time: 1015.662 ms (00:01.016)
COPY 68417
Time: 2407.190 ms (00:02.407)
COPY 37756
Time: 1239.839 ms (00:01.240)
COPY 70037
Time: 2799.807 ms (00:02.800)
COPY 42884
Time: 1997.952 ms (00:01.998)
COPY 49348
Time: 2063.528 ms (00:02.064)
COPY 35610
Time: 1876.238 ms (00:01.876)
COPY 32870
Time: 1419.286 ms (00:01.419)
COPY 43543
Time: 1779.397 ms (00:01.779)
COPY 19221
Time: 1760.982 ms (00:01.761)
COPY 73565
Time: 2750.711 ms (00:02.751)
COPY 28084
Time: 1960.714 ms (00:01.961)
COPY 3313
Time: 256.263 ms
COPY 92
Time: 21.747 ms
CREATE TABLE
Time: 54.301 ms
COPY 30204
Time: 1453.585 ms (00:01.454)
COPY 80922
Time: 2650.497 ms (00:02.650)
COPY 108245
Time: 4379.054 ms (00:04.379)
COPY 70310
Time: 3017.299 ms (00:03.017)
COPY 313
Time: 31.956 ms
COPY 14742
Time: 514.041 ms
COPY 1547
Time: 103.752 ms
COPY 328
Time: 14.386 ms
COPY 2454
Time: 117.255 ms
COPY 1121
Time: 34.697 ms
COPY 3534
Time: 337.476 ms
COPY 4105
Time: 351.870 ms
COPY 1881
Time: 215.663 ms
COPY 183
Time: 13.367 ms
COPY 2995
Time: 83.197 ms
COPY 402
Time: 29.522 ms
COPY 1078
Time: 27.480 ms
COPY 293
Time: 15.478 ms
COPY 1195
Time: 124.560 ms
COPY 126925
Time: 7147.237 ms (00:07.147)
COPY 3727
Time: 274.204 ms
COPY 20558
Time: 1057.515 ms (00:01.058)
COPY 16617
Time: 772.066 ms
COPY 26593
Time: 1591.225 ms (00:01.591)
COPY 4733
Time: 267.797 ms
COPY 27044
Time: 863.409 ms
COPY 2576
Time: 208.549 ms
COPY 1428
Time: 131.084 ms
COPY 7348
Time: 462.471 ms
COPY 669
Time: 43.312 ms
COPY 6241
Time: 299.456 ms
COPY 1540
Time: 129.340 ms
COPY 5499
Time: 218.063 ms
CREATE TABLE
Time: 8.551 ms
COPY 37730
Time: 1276.580 ms (00:01.277)
COPY 8607
Time: 529.063 ms
COPY 7749
Time: 338.339 ms
COPY 2545
Time: 180.810 ms
COPY 15261
Time: 505.462 ms
COPY 63177
Time: 2301.882 ms (00:02.302)
COPY 34504
Time: 1420.195 ms (00:01.420)
COPY 1
Time: 0.491 ms
COPY 23
Time: 0.701 ms
COPY 7
Time: 0.447 ms
COPY 2418
Time: 80.732 ms
COPY 14673
Time: 628.145 ms
COPY 1813
Time: 120.017 ms
COPY 25266
Time: 710.469 ms
COPY 7624
Time: 300.493 ms
COPY 8131
Time: 502.780 ms
COPY 98176
Time: 2391.354 ms (00:02.391)
COPY 64999
Time: 2098.570 ms (00:02.099)
CREATE TABLE
Time: 7.962 ms
COPY 198909
Time: 5230.970 ms (00:05.231)
COPY 563039
Time: 12043.022 ms (00:12.043)
COPY 70200
Time: 2259.261 ms (00:02.259)
COPY 133672
Time: 3288.191 ms (00:03.288)
COPY 79442
Time: 2685.916 ms (00:02.686)
COPY 291818
Time: 6991.361 ms (00:06.991)
COPY 110456
Time: 3183.164 ms (00:03.183)
ALTER TABLE
Time: 1503.212 ms (00:01.503)
ALTER TABLE
Time: 723.519 ms
ALTER TABLE
Time: 987.524 ms
ALTER TABLE
Time: 223.711 ms
ALTER TABLE
Time: 1249.125 ms (00:01.249)
ALTER TABLE
Time: 1893.444 ms (00:01.893)
ALTER TABLE
Time: 952.844 ms
ALTER TABLE
Time: 2605.493 ms (00:02.605)
ALTER TABLE
Time: 1733.353 ms (00:01.733)
ALTER TABLE
Time: 1015.023 ms (00:01.015)
ALTER TABLE
Time: 605.153 ms
ALTER TABLE
Time: 838.354 ms
ALTER TABLE
Time: 814.218 ms
ALTER TABLE
Time: 1226.256 ms (00:01.226)
COMMIT
Time: 63.987 ms
SET
Timing is on.
BEGIN
Time: 0.018 ms
CREATE TABLE
Time: 6.666 ms
COPY 33
Time: 9.707 ms
COPY 12
Time: 0.415 ms
COPY 10
Time: 0.214 ms
COPY 23
Time: 0.314 ms
COPY 17
Time: 0.248 ms
COPY 4
Time: 0.242 ms
COPY 28
Time: 0.385 ms
COPY 8
Time: 0.240 ms
COPY 20
Time: 0.333 ms
COPY 481
Time: 24.772 ms
COPY 43
Time: 0.612 ms
COPY 1198
Time: 122.255 ms
COPY 148
Time: 10.578 ms
COPY 429
Time: 29.294 ms
COPY 31
Time: 0.485 ms
COPY 245
Time: 70.630 ms
COPY 17
Time: 11.380 ms
COPY 4
Time: 1.071 ms
COPY 2
Time: 0.897 ms
COPY 52
Time: 0.569 ms
COPY 5
Time: 0.230 ms
COPY 35
Time: 0.424 ms
COPY 14
Time: 0.254 ms
COPY 16
Time: 0.260 ms
COPY 23
Time: 0.363 ms
COPY 19
Time: 0.444 ms
COPY 71
Time: 1.746 ms
COPY 2
Time: 0.173 ms
COPY 9
Time: 0.951 ms
COPY 12
Time: 0.918 ms
COPY 708
Time: 37.027 ms
COPY 2
Time: 0.203 ms
COPY 70
Time: 1.567 ms
COPY 118
Time: 20.409 ms
COPY 457
Time: 72.108 ms
COPY 124
Time: 22.680 ms
COPY 6
Time: 1.934 ms
COPY 666
Time: 58.062 ms
COPY 240
Time: 9.709 ms
COPY 65
Time: 4.773 ms
COPY 50
Time: 2.449 ms
COPY 4
Time: 0.255 ms
COPY 20
Time: 0.762 ms
COPY 199
Time: 11.072 ms
COPY 205
Time: 33.827 ms
COPY 237
Time: 7.862 ms
COPY 131
Time: 17.792 ms
COPY 1
Time: 0.188 ms
COPY 95
Time: 9.402 ms
COPY 24
Time: 0.385 ms
COPY 128
Time: 42.188 ms
COPY 1
Time: 0.314 ms
COPY 132
Time: 32.867 ms
COPY 5
Time: 0.336 ms
COPY 73
Time: 1.248 ms
COPY 4
Time: 0.217 ms
COPY 474
Time: 27.346 ms
COPY 231
Time: 26.590 ms
COPY 71
Time: 2.458 ms
COPY 4
Time: 0.214 ms
COPY 23
Time: 0.360 ms
COPY 34
Time: 0.449 ms
COPY 84
Time: 6.053 ms
COPY 31
Time: 0.403 ms
COPY 19
Time: 4.473 ms
COPY 1
Time: 0.236 ms
COPY 7
Time: 1.407 ms
COPY 5
Time: 0.239 ms
COPY 7
Time: 0.256 ms
COPY 10
Time: 0.409 ms
COPY 8
Time: 0.260 ms
COPY 7
Time: 0.191 ms
COPY 7
Time: 0.257 ms
COPY 2
Time: 0.259 ms
COPY 461
Time: 23.714 ms
COPY 1
Time: 0.196 ms
COPY 982
Time: 133.141 ms
COPY 3
Time: 0.816 ms
COPY 58
Time: 5.177 ms
COPY 6
Time: 1.131 ms
COPY 389
Time: 18.175 ms
COPY 734
Time: 40.101 ms
COPY 404
Time: 29.038 ms
COPY 32873
Time: 1703.680 ms (00:01.704)
COPY 1145
Time: 79.635 ms
COPY 7493
Time: 342.369 ms
COPY 2
Time: 0.625 ms
COPY 3
Time: 0.928 ms
COPY 2
Time: 0.226 ms
COPY 313
Time: 74.591 ms
COPY 39
Time: 0.600 ms
COPY 79
Time: 12.566 ms
COPY 862
Time: 112.322 ms
COPY 889
Time: 47.582 ms
COPY 595
Time: 99.447 ms
COPY 14
Time: 0.377 ms
COPY 12
Time: 0.266 ms
COPY 153
Time: 37.089 ms
COPY 10
Time: 0.320 ms
COPY 27
Time: 0.466 ms
COPY 168
Time: 15.383 ms
COPY 21
Time: 0.422 ms
COPY 9
Time: 0.212 ms
COPY 1223
Time: 77.938 ms
COPY 58
Time: 7.213 ms
COPY 5321
Time: 177.016 ms
COPY 80
Time: 39.927 ms
COPY 30
Time: 0.648 ms
COPY 146
Time: 31.449 ms
COPY 5
Time: 0.309 ms
COPY 9
Time: 0.236 ms
COPY 22
Time: 0.318 ms
COPY 18
Time: 0.294 ms
COPY 15
Time: 0.296 ms
COPY 16
Time: 0.367 ms
COPY 8
Time: 0.206 ms
COPY 18
Time: 0.194 ms
COPY 96
Time: 6.205 ms
COPY 9
Time: 0.257 ms
COPY 409
Time: 133.276 ms
COPY 570
Time: 12.732 ms
COPY 14
Time: 0.378 ms
COPY 1180
Time: 176.384 ms
COPY 44
Time: 10.993 ms
COPY 74
Time: 41.626 ms
COPY 8
Time: 2.606 ms
COPY 148
Time: 25.939 ms
COPY 1
Time: 0.609 ms
COPY 93
Time: 10.731 ms
COPY 2
Time: 0.347 ms
COPY 1187
Time: 74.890 ms
COPY 670
Time: 59.029 ms
COPY 2725
Time: 195.836 ms
COPY 1531
Time: 123.393 ms
COPY 151
Time: 67.749 ms
COPY 2931
Time: 333.536 ms
COPY 88
Time: 19.727 ms
COPY 2414
Time: 409.797 ms
COPY 225
Time: 29.270 ms
COPY 929
Time: 133.746 ms
COPY 132
Time: 14.502 ms
COPY 103
Time: 12.829 ms
COPY 19
Time: 2.968 ms
COPY 1
Time: 0.272 ms
COPY 91
Time: 42.711 ms
COPY 2
Time: 0.297 ms
COPY 38
Time: 4.143 ms
COPY 3
Time: 1.456 ms
COPY 81
Time: 23.591 ms
COPY 369
Time: 93.144 ms
COPY 552
Time: 42.446 ms
COPY 1386
Time: 141.002 ms
COPY 168
Time: 48.446 ms
COPY 4406
Time: 285.461 ms
COPY 84
Time: 15.715 ms
COPY 247
Time: 78.791 ms
COPY 252
Time: 34.333 ms
COPY 668
Time: 134.031 ms
COPY 1639
Time: 120.224 ms
COPY 506
Time: 44.906 ms
COPY 3992
Time: 337.236 ms
COPY 1330
Time: 201.589 ms
COPY 1279
Time: 125.983 ms
COPY 441
Time: 58.798 ms
COPY 47
Time: 8.977 ms
COPY 721
Time: 97.621 ms
COPY 708
Time: 131.667 ms
COPY 638
Time: 62.039 ms
COPY 64
Time: 17.991 ms
COPY 291
Time: 43.268 ms
COPY 267
Time: 15.768 ms
COPY 877
Time: 41.149 ms
COPY 512
Time: 65.627 ms
COPY 897
Time: 154.834 ms
COPY 1344
Time: 114.947 ms
COPY 2272
Time: 185.968 ms
COPY 1725
Time: 185.999 ms
COPY 4635
Time: 316.778 ms
COPY 261
Time: 39.257 ms
COPY 1142
Time: 66.218 ms
COPY 902
Time: 108.637 ms
COPY 288
Time: 19.708 ms
COPY 845
Time: 131.247 ms
COPY 2634
Time: 209.576 ms
COPY 748
Time: 95.385 ms
COPY 2172
Time: 400.330 ms
COPY 2232
Time: 351.951 ms
COPY 3388
Time: 488.234 ms
COPY 1300
Time: 213.987 ms
COPY 1622
Time: 193.899 ms
COPY 2336
Time: 213.374 ms
COPY 407
Time: 56.244 ms
COPY 520
Time: 46.394 ms
COPY 1040
Time: 257.708 ms
COPY 215
Time: 41.650 ms
COPY 512
Time: 121.393 ms
COPY 1068
Time: 101.801 ms
COPY 3036
Time: 214.806 ms
COPY 279
Time: 33.060 ms
COPY 5976
Time: 522.068 ms
COPY 359
Time: 20.638 ms
COPY 1822
Time: 240.975 ms
COPY 352
Time: 96.060 ms
COPY 19854
Time: 1655.107 ms (00:01.655)
COPY 628
Time: 98.333 ms
COPY 15883
Time: 1607.777 ms (00:01.608)
COPY 461
Time: 62.372 ms
COPY 1132
Time: 56.423 ms
COPY 1181
Time: 175.587 ms
COPY 573
Time: 105.065 ms
COPY 487
Time: 106.797 ms
COPY 1557
Time: 126.702 ms
COPY 2222
Time: 185.904 ms
COPY 4
Time: 9.145 ms
COPY 270
Time: 70.253 ms
COPY 100
Time: 61.405 ms
COPY 74
Time: 12.266 ms
COPY 3347
Time: 453.135 ms
COPY 464
Time: 23.686 ms
COPY 6
Time: 6.446 ms
COPY 130
Time: 40.015 ms
COPY 398
Time: 65.977 ms
COPY 482
Time: 69.287 ms
COPY 549
Time: 105.270 ms
COPY 658
Time: 235.519 ms
COPY 1119
Time: 287.422 ms
COPY 498
Time: 23.612 ms
COPY 13989
Time: 1142.161 ms (00:01.142)
COPY 38
Time: 26.898 ms
COPY 1959
Time: 121.028 ms
COPY 27
Time: 1.782 ms
COPY 2181
Time: 140.054 ms
COPY 2432
Time: 164.832 ms
COPY 8778
Time: 1318.050 ms (00:01.318)
COPY 16667
Time: 1681.721 ms (00:01.682)
COPY 2508
Time: 260.944 ms
COPY 9220
Time: 1185.909 ms (00:01.186)
COPY 2230
Time: 281.204 ms
COPY 6396
Time: 592.812 ms
COPY 2221
Time: 372.547 ms
COPY 551
Time: 115.012 ms
COPY 38
Time: 9.334 ms
COPY 375
Time: 132.608 ms
COPY 5
Time: 0.504 ms
COPY 71
Time: 8.681 ms
COPY 193
Time: 67.828 ms
COPY 100
Time: 31.328 ms
COPY 309
Time: 45.930 ms
COPY 1174
Time: 280.516 ms
COPY 262
Time: 33.484 ms
COPY 855
Time: 217.120 ms
COPY 208
Time: 23.806 ms
COPY 379
Time: 95.047 ms
COPY 634
Time: 140.343 ms
COPY 196
Time: 36.836 ms
COPY 278
Time: 52.266 ms
COPY 285
Time: 93.648 ms
COPY 112
Time: 30.293 ms
COPY 245
Time: 256.275 ms
COPY 282
Time: 138.722 ms
COPY 85
Time: 46.900 ms
COPY 480
Time: 121.480 ms
COPY 364
Time: 83.898 ms
COPY 545
Time: 248.750 ms
COPY 428
Time: 47.210 ms
COPY 478
Time: 46.335 ms
COPY 843
Time: 136.271 ms
COPY 127
Time: 58.828 ms
COPY 22
Time: 12.355 ms
COPY 2158
Time: 206.166 ms
COPY 68
Time: 4.793 ms
COPY 610
Time: 84.641 ms
COPY 1995
Time: 260.460 ms
COPY 1237
Time: 136.199 ms
COPY 1127
Time: 354.021 ms
COPY 572
Time: 87.276 ms
COPY 4
Time: 5.116 ms
COPY 1226
Time: 165.720 ms
COPY 294
Time: 72.204 ms
COPY 1025
Time: 151.255 ms
COPY 29
Time: 32.775 ms
COPY 24
Time: 34.739 ms
COPY 53
Time: 32.369 ms
COPY 135
Time: 23.629 ms
COPY 550
Time: 103.613 ms
COPY 45
Time: 7.488 ms
COPY 2344
Time: 101.951 ms
COPY 1616
Time: 227.446 ms
COPY 38
Time: 3.841 ms
COPY 110
Time: 19.679 ms
COPY 1421
Time: 231.173 ms
COPY 468
Time: 100.431 ms
COPY 911
Time: 104.460 ms
COPY 131
Time: 54.440 ms
COPY 335
Time: 115.492 ms
COPY 494
Time: 60.988 ms
COPY 1063
Time: 83.768 ms
COPY 225
Time: 109.515 ms
COPY 2
Time: 0.856 ms
COPY 531
Time: 79.149 ms
COPY 1593
Time: 311.204 ms
COPY 27
Time: 15.717 ms
COPY 411
Time: 75.198 ms
COPY 26
Time: 14.827 ms
COPY 234
Time: 14.754 ms
COPY 39
Time: 25.150 ms
COPY 7
Time: 5.275 ms
COPY 57
Time: 5.461 ms
COPY 249
Time: 28.229 ms
COPY 875
Time: 46.286 ms
COPY 53
Time: 129.210 ms
COPY 2753
Time: 235.953 ms
COPY 13343
Time: 1720.894 ms (00:01.721)
COPY 3752
Time: 224.554 ms
COPY 5023
Time: 534.074 ms
COPY 8
Time: 12.544 ms
COPY 558
Time: 45.393 ms
CREATE TABLE
Time: 9.331 ms
COPY 4742
Time: 380.824 ms
COPY 12837
Time: 1062.503 ms (00:01.063)
COPY 17986
Time: 1108.132 ms (00:01.108)
COPY 19074
Time: 1354.925 ms (00:01.355)
COPY 1344
Time: 83.616 ms
COPY 3
Time: 0.648 ms
COPY 37
Time: 24.141 ms
COPY 91
Time: 28.691 ms
COPY 71
Time: 23.775 ms
COPY 56
Time: 35.036 ms
COPY 518
Time: 72.325 ms
COPY 41
Time: 5.399 ms
COPY 217
Time: 25.600 ms
COPY 650
Time: 65.019 ms
COPY 110
Time: 14.847 ms
COPY 172
Time: 21.101 ms
COPY 30
Time: 7.175 ms
COPY 31
Time: 5.588 ms
COPY 209
Time: 43.982 ms
COPY 32
Time: 21.263 ms
COPY 515
Time: 78.697 ms
COPY 61
Time: 23.261 ms
COPY 118
Time: 14.831 ms
COPY 221
Time: 31.755 ms
COPY 594
Time: 71.962 ms
COPY 55
Time: 53.519 ms
COPY 49
Time: 14.864 ms
COPY 125
Time: 41.765 ms
COPY 144
Time: 14.538 ms
COPY 72
Time: 8.829 ms
COPY 265
Time: 54.111 ms
COPY 160
Time: 50.660 ms
COPY 45
Time: 69.196 ms
COPY 35
Time: 20.730 ms
COPY 196
Time: 52.843 ms
COPY 1208
Time: 70.024 ms
COPY 422
Time: 112.718 ms
COPY 46
Time: 53.850 ms
COPY 444
Time: 78.127 ms
COPY 625
Time: 174.572 ms
COPY 844
Time: 120.000 ms
COPY 3320
Time: 147.817 ms
COPY 759
Time: 200.622 ms
COPY 1664
Time: 86.329 ms
COPY 527
Time: 58.444 ms
COPY 154
Time: 131.836 ms
COPY 395
Time: 28.946 ms
COPY 149
Time: 61.503 ms
COPY 816
Time: 56.554 ms
COPY 199
Time: 28.702 ms
COPY 1363
Time: 229.559 ms
COPY 509
Time: 40.805 ms
COPY 83
Time: 52.523 ms
COPY 44
Time: 52.711 ms
COPY 224
Time: 72.470 ms
COPY 2556
Time: 589.909 ms
COPY 2308
Time: 311.274 ms
COPY 3929
Time: 590.933 ms
COPY 2526
Time: 241.318 ms
COPY 717
Time: 79.839 ms
COPY 432
Time: 279.241 ms
COPY 1033
Time: 117.624 ms
COPY 877
Time: 88.489 ms
COPY 696
Time: 367.902 ms
COPY 1052
Time: 99.062 ms
COPY 419
Time: 59.921 ms
COPY 1699
Time: 186.572 ms
COPY 650
Time: 312.448 ms
COPY 2960
Time: 402.530 ms
COPY 288
Time: 58.499 ms
COPY 65
Time: 42.775 ms
COPY 578
Time: 84.810 ms
COPY 1116
Time: 73.430 ms
COPY 890
Time: 131.112 ms
COPY 446
Time: 26.873 ms
COPY 254
Time: 27.062 ms
COPY 228
Time: 7.161 ms
COPY 176
Time: 5.821 ms
COPY 69
Time: 11.283 ms
COPY 143
Time: 5.190 ms
COPY 49
Time: 15.732 ms
COPY 2084
Time: 160.576 ms
COPY 248
Time: 27.390 ms
COPY 314
Time: 22.049 ms
COPY 523
Time: 26.052 ms
COPY 449
Time: 25.372 ms
COPY 862
Time: 43.671 ms
COPY 1090
Time: 90.962 ms
COPY 551
Time: 18.210 ms
COPY 6388
Time: 212.158 ms
COPY 74
Time: 4.583 ms
COPY 120
Time: 51.453 ms
COPY 160
Time: 13.227 ms
COPY 54
Time: 2.738 ms
COPY 311
Time: 21.164 ms
COPY 177
Time: 26.540 ms
COPY 264
Time: 16.285 ms
COPY 1870
Time: 230.807 ms
COPY 95
Time: 10.543 ms
COPY 1007
Time: 49.437 ms
COPY 397
Time: 106.433 ms
COPY 19170
Time: 675.854 ms
COPY 1502
Time: 151.276 ms
COPY 302
Time: 48.328 ms
COPY 3665
Time: 221.919 ms
COPY 2480
Time: 83.384 ms
COPY 5548
Time: 176.057 ms
COPY 11971
Time: 470.712 ms
COPY 12661
Time: 481.273 ms
COPY 4851
Time: 572.426 ms
COPY 2787
Time: 80.434 ms
COPY 364
Time: 27.127 ms
COPY 58
Time: 22.937 ms
COPY 2666
Time: 71.851 ms
COPY 40
Time: 11.253 ms
COPY 843
Time: 83.456 ms
COPY 432
Time: 32.749 ms
COPY 7526
Time: 158.732 ms
COPY 9941
Time: 670.452 ms
COPY 37841
Time: 1053.856 ms (00:01.054)
COPY 39250
Time: 989.859 ms
COPY 6320
Time: 273.505 ms
COPY 11759
Time: 282.885 ms
COPY 4153
Time: 147.385 ms
COPY 56533
Time: 1571.150 ms (00:01.571)
COPY 43415
Time: 4094.687 ms (00:04.095)
COPY 2356
Time: 136.960 ms
COPY 6680
Time: 418.886 ms
COPY 3290
Time: 136.491 ms
COPY 11842
Time: 759.241 ms
COPY 6174
Time: 397.502 ms
COPY 12557
Time: 874.085 ms
COPY 1606
Time: 62.466 ms
COPY 72
Time: 88.862 ms
COPY 2894
Time: 162.923 ms
COPY 2025
Time: 98.417 ms
COPY 8359
Time: 170.676 ms
COPY 2269
Time: 51.416 ms
COPY 9811
Time: 522.038 ms
COPY 382
Time: 16.925 ms
COPY 30
Time: 11.376 ms
COPY 355
Time: 51.153 ms
COPY 284
Time: 73.848 ms
COPY 94
Time: 22.972 ms
COPY 529
Time: 79.842 ms
COPY 236
Time: 16.878 ms
COPY 20755
Time: 742.036 ms
COPY 4975
Time: 227.840 ms
COPY 804
Time: 53.577 ms
COPY 19190
Time: 690.129 ms
COPY 54279
Time: 1917.151 ms (00:01.917)
COPY 5405
Time: 909.962 ms
COPY 15312
Time: 805.479 ms
COPY 44
Time: 9.683 ms
COPY 95
Time: 40.981 ms
COPY 79
Time: 9.501 ms
COPY 61
Time: 12.940 ms
COPY 154
Time: 27.366 ms
COPY 883
Time: 274.695 ms
COPY 169
Time: 24.748 ms
COPY 1121
Time: 138.123 ms
COPY 232
Time: 116.777 ms
COPY 30
Time: 6.188 ms
COPY 352
Time: 35.070 ms
COPY 375
Time: 47.787 ms
COPY 103
Time: 48.177 ms
COPY 1562
Time: 89.328 ms
COPY 504
Time: 61.440 ms
COPY 156
Time: 48.710 ms
COPY 248
Time: 34.332 ms
COPY 235
Time: 134.170 ms
COPY 42
Time: 11.596 ms
COPY 203
Time: 83.183 ms
COPY 261
Time: 39.486 ms
COPY 721
Time: 184.443 ms
COPY 181
Time: 35.707 ms
COPY 6208
Time: 289.914 ms
COPY 378
Time: 110.431 ms
COPY 98
Time: 24.831 ms
COPY 245
Time: 42.819 ms
COPY 630
Time: 31.364 ms
COPY 186
Time: 36.382 ms
COPY 200
Time: 22.905 ms
COPY 137
Time: 74.279 ms
COPY 927
Time: 97.739 ms
COPY 37
Time: 4.934 ms
COPY 75
Time: 9.176 ms
COPY 210
Time: 15.534 ms
COPY 17
Time: 3.877 ms
COPY 378
Time: 38.698 ms
COPY 8
Time: 0.895 ms
COPY 19
Time: 6.208 ms
COPY 419
Time: 195.387 ms
COPY 88
Time: 12.941 ms
COPY 65
Time: 34.978 ms
COPY 22
Time: 1.787 ms
COPY 176
Time: 44.783 ms
COPY 48
Time: 6.156 ms
COPY 54
Time: 12.966 ms
COPY 50
Time: 17.874 ms
COPY 1523
Time: 145.792 ms
COPY 559
Time: 76.452 ms
CREATE TABLE
Time: 7.865 ms
COPY 33739
Time: 2225.722 ms (00:02.226)
COPY 2165
Time: 276.868 ms
COPY 24360
Time: 1328.694 ms (00:01.329)
COPY 28192
Time: 2436.800 ms (00:02.437)
COPY 16603
Time: 1386.581 ms (00:01.387)
COPY 3337
Time: 316.476 ms
COPY 184629
Time: 6757.587 ms (00:06.758)
COPY 9613
Time: 688.155 ms
COPY 20818
Time: 721.205 ms
COPY 839
Time: 131.022 ms
COPY 6114
Time: 435.762 ms
COPY 754
Time: 212.197 ms
COPY 2946
Time: 182.651 ms
COPY 18994
Time: 1050.182 ms (00:01.050)
COPY 783
Time: 90.551 ms
COPY 57597
Time: 2434.884 ms (00:02.435)
COPY 1298
Time: 258.277 ms
COPY 1690
Time: 346.252 ms
COPY 1316
Time: 259.355 ms
COPY 7550
Time: 442.268 ms
COPY 2141
Time: 136.020 ms
COPY 578
Time: 216.819 ms
COPY 307
Time: 107.929 ms
COPY 1452
Time: 283.981 ms
COPY 23
Time: 16.073 ms
COPY 10507
Time: 468.058 ms
COPY 2022
Time: 87.545 ms
COPY 6220
Time: 1079.777 ms (00:01.080)
COPY 23838
Time: 2109.687 ms (00:02.110)
COPY 5238
Time: 870.098 ms
COPY 73392
Time: 3548.652 ms (00:03.549)
COPY 1577
Time: 290.598 ms
COPY 7201
Time: 912.361 ms
COPY 27348
Time: 1068.276 ms (00:01.068)
COPY 4174
Time: 595.505 ms
CREATE TABLE
Time: 7.390 ms
COPY 2328
Time: 93.936 ms
COPY 341
Time: 92.970 ms
COPY 961
Time: 176.598 ms
COPY 799
Time: 79.521 ms
COPY 12422
Time: 643.749 ms
COPY 692
Time: 72.789 ms
COPY 873
Time: 169.823 ms
COPY 4168
Time: 462.803 ms
COPY 21663
Time: 1963.333 ms (00:01.963)
COPY 700
Time: 71.314 ms
COPY 2407
Time: 510.578 ms
COPY 13941
Time: 689.821 ms
COPY 15765
Time: 1280.769 ms (00:01.281)
COPY 3374
Time: 233.169 ms
COPY 72
Time: 28.958 ms
COPY 299
Time: 9.825 ms
COPY 141
Time: 21.044 ms
COPY 89
Time: 56.703 ms
COPY 1343
Time: 93.314 ms
COPY 1246
Time: 61.317 ms
COPY 2139
Time: 121.134 ms
COPY 1707
Time: 180.214 ms
COPY 64
Time: 4.523 ms
COPY 2464
Time: 80.178 ms
COPY 485
Time: 95.588 ms
COPY 551
Time: 27.135 ms
COPY 94
Time: 12.873 ms
COPY 1241
Time: 100.182 ms
COPY 3746
Time: 241.483 ms
COPY 748
Time: 94.598 ms
COPY 466
Time: 104.399 ms
COPY 50
Time: 6.807 ms
COPY 1226
Time: 77.412 ms
COPY 1573
Time: 176.663 ms
COPY 5492
Time: 306.535 ms
COPY 610
Time: 271.329 ms
COPY 3320
Time: 319.822 ms
COPY 304
Time: 36.581 ms
COPY 4599
Time: 260.961 ms
COPY 77
Time: 21.532 ms
COPY 1121
Time: 154.996 ms
COPY 279
Time: 8.805 ms
COPY 487
Time: 51.857 ms
COPY 197
Time: 28.507 ms
COPY 735
Time: 120.726 ms
COPY 794
Time: 95.556 ms
COPY 1491
Time: 111.777 ms
COPY 1827
Time: 166.038 ms
COPY 755
Time: 166.509 ms
COPY 320
Time: 80.736 ms
COPY 89
Time: 12.273 ms
COPY 1838
Time: 165.586 ms
COPY 537
Time: 62.237 ms
COPY 608
Time: 70.297 ms
COPY 2368
Time: 523.944 ms
COPY 1916
Time: 107.117 ms
COPY 1797
Time: 119.897 ms
COPY 4389
Time: 425.544 ms
COPY 670
Time: 77.222 ms
COPY 1750
Time: 231.409 ms
COPY 345
Time: 54.478 ms
COPY 3718
Time: 359.427 ms
COPY 23147
Time: 1210.235 ms (00:01.210)
COPY 3844
Time: 227.073 ms
COPY 32638
Time: 1029.443 ms (00:01.029)
COPY 4021
Time: 91.956 ms
COPY 28340
Time: 1204.978 ms (00:01.205)
COPY 3941
Time: 273.668 ms
COPY 206609
Time: 6845.802 ms (00:06.846)
COPY 381
Time: 65.341 ms
COPY 2321
Time: 219.720 ms
COPY 1771
Time: 85.625 ms
COPY 1549
Time: 169.101 ms
COPY 214
Time: 40.564 ms
COPY 204
Time: 42.199 ms
COPY 728
Time: 78.101 ms
CREATE TABLE
Time: 7.832 ms
COPY 5958
Time: 407.910 ms
COPY 22646
Time: 1411.122 ms (00:01.411)
COPY 4992
Time: 504.495 ms
COPY 14026
Time: 1567.386 ms (00:01.567)
COPY 135811
Time: 4945.788 ms (00:04.946)
COPY 116088
Time: 3106.580 ms (00:03.107)
COPY 110184
Time: 3160.445 ms (00:03.160)
COPY 14569
Time: 1145.524 ms (00:01.146)
COPY 6713
Time: 200.969 ms
COPY 152213
Time: 4241.408 ms (00:04.241)
COPY 19611
Time: 1794.321 ms (00:01.794)
COPY 7939
Time: 400.642 ms
COPY 766
Time: 89.357 ms
COPY 42174
Time: 1918.747 ms (00:01.919)
COPY 947
Time: 165.788 ms
COPY 1241
Time: 89.689 ms
COPY 944
Time: 91.292 ms
COPY 2890
Time: 120.504 ms
COPY 5132
Time: 369.418 ms
COPY 649
Time: 23.527 ms
COPY 7193
Time: 792.608 ms
COPY 474
Time: 91.432 ms
COPY 117
Time: 15.969 ms
COPY 1447
Time: 164.385 ms
COPY 133
Time: 44.051 ms
COPY 1644
Time: 196.242 ms
COPY 242
Time: 48.386 ms
COPY 12266
Time: 457.891 ms
CREATE TABLE
Time: 7.069 ms
COPY 317014
Time: 8846.291 ms (00:08.846)
COPY 45623
Time: 2278.107 ms (00:02.278)
COPY 243098
Time: 14935.831 ms (00:14.936)
COPY 39822
Time: 2070.950 ms (00:02.071)
COPY 68261
Time: 3717.557 ms (00:03.718)
COPY 25611
Time: 1218.239 ms (00:01.218)
COPY 100728
Time: 6976.406 ms (00:06.976)
CREATE TABLE
Time: 23.114 ms
COPY 368
Time: 11.090 ms
COPY 1
Time: 0.346 ms
COPY 15
Time: 1.531 ms
COPY 1689
Time: 172.477 ms
COPY 386
Time: 97.237 ms
COPY 3863
Time: 657.995 ms
COPY 593
Time: 75.289 ms
COPY 4
Time: 0.662 ms
COPY 2422
Time: 169.385 ms
COPY 1680
Time: 164.433 ms
COPY 3
Time: 1.484 ms
COPY 1474
Time: 94.527 ms
COPY 145
Time: 13.524 ms
COPY 1049
Time: 216.548 ms
COPY 3442
Time: 282.051 ms
COPY 6669
Time: 386.220 ms
COPY 5202
Time: 775.701 ms
COPY 11391
Time: 738.481 ms
COPY 816
Time: 86.451 ms
COPY 2483
Time: 378.496 ms
COPY 2251
Time: 147.220 ms
COPY 217
Time: 6.566 ms
COPY 1621
Time: 123.907 ms
COPY 1532
Time: 119.973 ms
COPY 1413
Time: 177.882 ms
COPY 2342
Time: 159.062 ms
COPY 13
Time: 1.811 ms
COPY 877
Time: 61.779 ms
COPY 932
Time: 26.713 ms
COPY 1109
Time: 39.370 ms
COPY 319
Time: 59.338 ms
COPY 1515
Time: 150.827 ms
COPY 147
Time: 4.689 ms
COPY 756
Time: 246.947 ms
COPY 10151
Time: 427.178 ms
COPY 75880
Time: 2072.439 ms (00:02.072)
COPY 24364
Time: 988.741 ms
COPY 25722
Time: 1439.860 ms (00:01.440)
COPY 21982
Time: 631.688 ms
COPY 13628
Time: 468.522 ms
COPY 14380
Time: 621.279 ms
COPY 121372
Time: 3620.932 ms (00:03.621)
COPY 15482
Time: 1079.631 ms (00:01.080)
COPY 8631
Time: 563.354 ms
COPY 9029
Time: 606.366 ms
COPY 14382
Time: 369.057 ms
COPY 27569
Time: 787.566 ms
COPY 18940
Time: 847.672 ms
CREATE TABLE
Time: 7.412 ms
COPY 65833
Time: 2162.747 ms (00:02.163)
COPY 77592
Time: 3765.086 ms (00:03.765)
COPY 135697
Time: 3829.919 ms (00:03.830)
COPY 60980
Time: 1976.797 ms (00:01.977)
COPY 60695
Time: 2254.277 ms (00:02.254)
COPY 44310
Time: 1894.238 ms (00:01.894)
COPY 478223
Time: 13255.842 ms (00:13.256)
CREATE TABLE
Time: 8.122 ms
COPY 226486
Time: 7931.116 ms (00:07.931)
COPY 21922
Time: 778.542 ms
COPY 70255
Time: 4154.875 ms (00:04.155)
COPY 69144
Time: 3991.505 ms (00:03.992)
COPY 90707
Time: 6177.936 ms (00:06.178)
COPY 15036
Time: 876.869 ms
COPY 105522
Time: 5949.365 ms (00:05.949)
CREATE TABLE
Time: 9.810 ms
COPY 28713
Time: 1021.400 ms (00:01.021)
COPY 14999
Time: 945.359 ms
COPY 34852
Time: 1129.276 ms (00:01.129)
COPY 47478
Time: 1581.774 ms (00:01.582)
COPY 19494
Time: 752.868 ms
COPY 28097
Time: 994.566 ms
COPY 8077
Time: 356.590 ms
COPY 6051
Time: 249.547 ms
COPY 3976
Time: 173.814 ms
COPY 26736
Time: 813.078 ms
COPY 3261
Time: 181.955 ms
COPY 12386
Time: 944.813 ms
COPY 15085
Time: 514.673 ms
COPY 16124
Time: 814.581 ms
COPY 51962
Time: 1733.978 ms (00:01.734)
COPY 14144
Time: 379.345 ms
COPY 140424
Time: 4840.018 ms (00:04.840)
COPY 29722
Time: 1246.214 ms (00:01.246)
COPY 47619
Time: 1551.551 ms (00:01.552)
COPY 106805
Time: 2687.685 ms (00:02.688)
COPY 284509
Time: 9696.444 ms (00:09.696)
CREATE TABLE
Time: 10.680 ms
COPY 29471
Time: 960.200 ms
COPY 7062
Time: 346.803 ms
COPY 8483
Time: 532.429 ms
COPY 5739
Time: 566.158 ms
COPY 2600
Time: 96.620 ms
COPY 6846
Time: 541.939 ms
COPY 7638
Time: 373.187 ms
COPY 3909
Time: 138.401 ms
COPY 21493
Time: 1167.856 ms (00:01.168)
COPY 3946
Time: 108.260 ms
COPY 3055
Time: 402.998 ms
COPY 2896
Time: 137.619 ms
COPY 12969
Time: 689.458 ms
COPY 238
Time: 26.545 ms
COPY 9485
Time: 392.544 ms
COPY 12836
Time: 1315.075 ms (00:01.315)
COPY 9284
Time: 671.273 ms
COPY 4569
Time: 450.235 ms
COPY 26071
Time: 1066.560 ms (00:01.067)
COPY 6493
Time: 305.504 ms
COPY 54236
Time: 1980.912 ms (00:01.981)
COPY 2402
Time: 112.208 ms
COPY 6715
Time: 242.993 ms
COPY 1527
Time: 126.334 ms
COPY 12638
Time: 932.879 ms
COPY 7971
Time: 259.482 ms
COPY 271
Time: 44.190 ms
COPY 740
Time: 55.848 ms
COPY 5406
Time: 520.500 ms
COPY 19902
Time: 1226.565 ms (00:01.227)
COPY 2448
Time: 216.749 ms
COPY 4388
Time: 453.159 ms
COPY 838
Time: 116.542 ms
COPY 2886
Time: 567.363 ms
COPY 265
Time: 69.586 ms
COPY 3664
Time: 138.520 ms
COPY 10543
Time: 426.609 ms
COPY 2037
Time: 140.673 ms
COPY 2878
Time: 239.413 ms
COPY 746
Time: 135.450 ms
COPY 903
Time: 36.766 ms
COPY 4916
Time: 307.802 ms
COPY 535
Time: 142.680 ms
COPY 12629
Time: 308.295 ms
COPY 2889
Time: 153.735 ms
COPY 6308
Time: 228.882 ms
COPY 3009
Time: 167.483 ms
COPY 1733
Time: 51.607 ms
COPY 6068
Time: 180.799 ms
CREATE TABLE
Time: 7.182 ms
COPY 171614
Time: 3799.855 ms (00:03.800)
COPY 336167
Time: 8168.538 ms (00:08.169)
COPY 47580
Time: 911.156 ms
COPY 68675
Time: 1580.312 ms (00:01.580)
COPY 105742
Time: 2122.833 ms (00:02.123)
COPY 338848
Time: 6311.645 ms (00:06.312)
COPY 91213
Time: 1752.150 ms (00:01.752)
CREATE TABLE
Time: 27.750 ms
COPY 136476
Time: 3210.843 ms (00:03.211)
COPY 177957
Time: 3438.094 ms (00:03.438)
COPY 52725
Time: 1076.186 ms (00:01.076)
COPY 157578
Time: 3074.357 ms (00:03.074)
COPY 87737
Time: 1856.891 ms (00:01.857)
COPY 109664
Time: 2518.409 ms (00:02.518)
COPY 150809
Time: 3685.492 ms (00:03.685)
COPY 5851
Time: 81.355 ms
COPY 969
Time: 17.380 ms
COPY 13421
Time: 302.653 ms
COPY 40263
Time: 903.612 ms
COPY 2178
Time: 46.702 ms
COPY 1237
Time: 86.877 ms
COPY 71550
Time: 1564.811 ms (00:01.565)
COPY 1094
Time: 37.148 ms
COPY 3585
Time: 128.133 ms
COPY 57664
Time: 1665.250 ms (00:01.665)
CREATE TABLE
Time: 6.910 ms
COPY 162266
Time: 3719.800 ms (00:03.720)
COPY 142531
Time: 3174.200 ms (00:03.174)
COPY 199733
Time: 5097.531 ms (00:05.098)
COPY 136058
Time: 2713.203 ms (00:02.713)
COPY 157082
Time: 4391.589 ms (00:04.392)
COPY 165949
Time: 3769.577 ms (00:03.770)
COPY 146710
Time: 3766.827 ms (00:03.767)
ALTER TABLE
Time: 2048.719 ms (00:02.049)
ALTER TABLE
Time: 757.476 ms
ALTER TABLE
Time: 645.391 ms
ALTER TABLE
Time: 534.771 ms
ALTER TABLE
Time: 660.743 ms
ALTER TABLE
Time: 885.693 ms
ALTER TABLE
Time: 543.081 ms
ALTER TABLE
Time: 901.865 ms
ALTER TABLE
Time: 664.362 ms
ALTER TABLE
Time: 1039.331 ms (00:01.039)
ALTER TABLE
Time: 1062.902 ms (00:01.063)
ALTER TABLE
Time: 1019.594 ms (00:01.020)
ALTER TABLE
Time: 893.126 ms
ALTER TABLE
Time: 962.445 ms
COMMIT
Time: 67.881 ms
SET
Timing is on.
BEGIN
Time: 0.022 ms
CREATE TABLE
Time: 5.311 ms
COPY 287624
Time: 5646.904 ms (00:05.647)
COPY 179195
Time: 5768.951 ms (00:05.769)
COPY 111358
Time: 3910.511 ms (00:03.911)
COPY 214904
Time: 7055.286 ms (00:07.055)
COPY 692506
Time: 20475.635 ms (00:20.476)
COPY 186671
Time: 7026.022 ms (00:07.026)
COPY 246342
Time: 7200.852 ms (00:07.201)
CREATE TABLE
Time: 8.329 ms
COPY 243193
Time: 9430.419 ms (00:09.430)
COPY 177668
Time: 5728.226 ms (00:05.728)
COPY 62975
Time: 2460.323 ms (00:02.460)
COPY 192620
Time: 5744.574 ms (00:05.745)
COPY 217948
Time: 6888.988 ms (00:06.889)
COPY 160516
Time: 6977.071 ms (00:06.977)
COPY 163291
Time: 4664.711 ms (00:04.665)
CREATE TABLE
Time: 8.348 ms
COPY 351420
Time: 7167.941 ms (00:07.168)
COPY 65530
Time: 1906.836 ms (00:01.907)
COPY 117249
Time: 3286.172 ms (00:03.286)
COPY 127399
Time: 3085.578 ms (00:03.086)
COPY 178947
Time: 6042.522 ms (00:06.043)
COPY 74364
Time: 2963.653 ms (00:02.964)
COPY 342392
Time: 9836.247 ms (00:09.836)
CREATE TABLE
Time: 7.663 ms
COPY 72301
Time: 3451.685 ms (00:03.452)
COPY 46291
Time: 2290.511 ms (00:02.291)
COPY 65044
Time: 3138.106 ms (00:03.138)
COPY 68487
Time: 3585.473 ms (00:03.585)
COPY 42506
Time: 2684.174 ms (00:02.684)
COPY 48429
Time: 2210.939 ms (00:02.211)
COPY 107255
Time: 3896.249 ms (00:03.896)
CREATE TABLE
Time: 7.333 ms
COPY 241305
Time: 6424.530 ms (00:06.425)
COPY 95115
Time: 4171.877 ms (00:04.172)
COPY 1688134
Time: 40344.612 ms (00:40.345)
COPY 247287
Time: 7160.641 ms (00:07.161)
COPY 87633
Time: 2837.590 ms (00:02.838)
COPY 49070
Time: 2545.372 ms (00:02.545)
COPY 166624
Time: 5313.915 ms (00:05.314)
CREATE TABLE
Time: 7.383 ms
COPY 39762
Time: 1711.001 ms (00:01.711)
COPY 138714
Time: 4096.778 ms (00:04.097)
COPY 25083
Time: 933.059 ms
COPY 73686
Time: 3308.001 ms (00:03.308)
COPY 55391
Time: 1884.705 ms (00:01.885)
COPY 49447
Time: 2144.789 ms (00:02.145)
COPY 5832
Time: 345.929 ms
COPY 1178
Time: 62.619 ms
COPY 149
Time: 48.698 ms
COPY 7947
Time: 350.513 ms
COPY 1403
Time: 88.999 ms
COPY 2810
Time: 409.200 ms
COPY 27
Time: 3.320 ms
COPY 289
Time: 18.640 ms
COPY 56
Time: 50.386 ms
COPY 55
Time: 7.692 ms
COPY 56
Time: 11.510 ms
COPY 166
Time: 22.801 ms
COPY 880
Time: 38.943 ms
COPY 831
Time: 29.494 ms
COPY 22
Time: 2.879 ms
COPY 5307
Time: 325.074 ms
COPY 3704
Time: 195.073 ms
COPY 1862
Time: 77.356 ms
COPY 10302
Time: 482.594 ms
COPY 1252
Time: 144.424 ms
COPY 5187
Time: 148.943 ms
COPY 425
Time: 23.252 ms
COPY 131
Time: 31.698 ms
COPY 1940
Time: 93.227 ms
COPY 1545
Time: 67.368 ms
COPY 488
Time: 20.591 ms
COPY 184
Time: 76.954 ms
COPY 751
Time: 77.053 ms
COPY 170
Time: 36.600 ms
COPY 887
Time: 80.845 ms
COPY 442
Time: 11.754 ms
COPY 8141
Time: 672.878 ms
COPY 643
Time: 68.466 ms
COPY 30
Time: 13.314 ms
COPY 1179
Time: 42.259 ms
COPY 36
Time: 7.994 ms
COPY 147
Time: 30.149 ms
COPY 46
Time: 19.263 ms
COPY 49
Time: 23.305 ms
COPY 14120
Time: 669.295 ms
COPY 97
Time: 14.370 ms
COPY 109
Time: 10.385 ms
COPY 3702
Time: 129.448 ms
COPY 8942
Time: 296.556 ms
COPY 871
Time: 41.134 ms
COPY 9343
Time: 365.209 ms
COPY 190
Time: 34.989 ms
COPY 106
Time: 18.862 ms
COPY 1380
Time: 50.130 ms
COPY 734
Time: 133.591 ms
COPY 5960
Time: 804.004 ms
COPY 1000
Time: 165.786 ms
COPY 1555
Time: 254.646 ms
COPY 814
Time: 69.367 ms
COPY 1997
Time: 220.302 ms
COPY 360
Time: 72.194 ms
COPY 763
Time: 102.564 ms
COPY 205
Time: 26.973 ms
COPY 5104
Time: 289.799 ms
COPY 47
Time: 7.271 ms
COPY 256
Time: 5.922 ms
COPY 934
Time: 137.878 ms
COPY 129
Time: 8.897 ms
COPY 1062
Time: 260.430 ms
COPY 87
Time: 15.302 ms
COPY 111
Time: 22.214 ms
COPY 157
Time: 20.838 ms
COPY 38
Time: 1.836 ms
COPY 614
Time: 143.340 ms
COPY 171
Time: 17.731 ms
COPY 288
Time: 33.213 ms
COPY 493
Time: 65.770 ms
COPY 10826
Time: 868.067 ms
COPY 3558
Time: 450.121 ms
COPY 2022
Time: 72.795 ms
COPY 224
Time: 35.406 ms
COPY 727
Time: 135.445 ms
COPY 2886
Time: 274.276 ms
COPY 567
Time: 33.970 ms
COPY 425
Time: 46.306 ms
COPY 400
Time: 119.318 ms
COPY 544
Time: 58.430 ms
COPY 332
Time: 57.379 ms
COPY 225
Time: 31.453 ms
COPY 505
Time: 122.731 ms
COPY 1104
Time: 115.043 ms
COPY 270
Time: 126.624 ms
COPY 329
Time: 41.560 ms
COPY 285
Time: 44.452 ms
COPY 1520
Time: 129.545 ms
COPY 5858
Time: 168.190 ms
COPY 15428
Time: 873.130 ms
COPY 1462
Time: 80.264 ms
COPY 12467
Time: 836.058 ms
COPY 11862
Time: 537.400 ms
COPY 5143
Time: 381.798 ms
COPY 1142
Time: 51.372 ms
COPY 2956
Time: 424.277 ms
COPY 19
Time: 0.690 ms
COPY 2639
Time: 71.167 ms
COPY 1625
Time: 42.130 ms
COPY 56
Time: 2.883 ms
COPY 11408
Time: 275.576 ms
COPY 607
Time: 30.612 ms
COPY 25858
Time: 1077.242 ms (00:01.077)
COPY 1472
Time: 115.859 ms
COPY 40669
Time: 1227.845 ms (00:01.228)
COPY 5944
Time: 224.268 ms
COPY 61073
Time: 1560.223 ms (00:01.560)
CREATE TABLE
Time: 8.906 ms
COPY 3649
Time: 433.727 ms
COPY 24128
Time: 2016.007 ms (00:02.016)
COPY 11189
Time: 996.766 ms
COPY 11864
Time: 1429.670 ms (00:01.430)
COPY 1395
Time: 118.478 ms
COPY 3466
Time: 344.782 ms
COPY 5821
Time: 489.598 ms
COPY 16089
Time: 898.279 ms
COPY 22488
Time: 1320.969 ms (00:01.321)
COPY 313
Time: 20.989 ms
COPY 11547
Time: 1026.317 ms (00:01.026)
COPY 5713
Time: 938.005 ms
COPY 5808
Time: 418.562 ms
COPY 10307
Time: 755.552 ms
COPY 2005
Time: 348.056 ms
COPY 4134
Time: 299.419 ms
COPY 1193
Time: 199.021 ms
COPY 1657
Time: 81.972 ms
COPY 88532
Time: 3264.931 ms (00:03.265)
COPY 94527
Time: 3072.816 ms (00:03.073)
COPY 1093
Time: 31.984 ms
COPY 12650
Time: 493.181 ms
COPY 6681
Time: 263.186 ms
COPY 13281
Time: 661.283 ms
COPY 4278
Time: 260.023 ms
COPY 150
Time: 5.924 ms
COPY 14950
Time: 489.063 ms
COPY 17
Time: 1.054 ms
COPY 2225
Time: 297.024 ms
COPY 723
Time: 17.326 ms
COPY 457
Time: 27.544 ms
COPY 299
Time: 36.200 ms
COPY 965
Time: 49.345 ms
COPY 797
Time: 71.612 ms
COPY 855
Time: 99.801 ms
COPY 416
Time: 47.385 ms
COPY 19098
Time: 1448.665 ms (00:01.449)
COPY 3722
Time: 239.462 ms
COPY 326
Time: 27.920 ms
COPY 1772
Time: 282.405 ms
COPY 1729
Time: 83.481 ms
COPY 7632
Time: 234.653 ms
COPY 902
Time: 46.995 ms
COPY 1111
Time: 124.318 ms
COPY 428
Time: 22.836 ms
COPY 238
Time: 7.643 ms
COPY 5960
Time: 104.580 ms
COPY 4602
Time: 181.942 ms
COPY 1350
Time: 39.443 ms
COPY 1678
Time: 39.593 ms
COPY 521
Time: 97.682 ms
COPY 189
Time: 12.116 ms
COPY 735
Time: 47.021 ms
COPY 415
Time: 20.415 ms
COPY 103
Time: 13.839 ms
COPY 604
Time: 19.305 ms
COPY 106
Time: 9.832 ms
COPY 14
Time: 0.795 ms
COPY 311
Time: 16.309 ms
COPY 379
Time: 32.503 ms
COPY 230
Time: 20.073 ms
COPY 1339
Time: 111.832 ms
COPY 215
Time: 17.579 ms
COPY 343
Time: 10.183 ms
COPY 47
Time: 12.921 ms
COPY 431
Time: 66.904 ms
COPY 1496
Time: 57.382 ms
COPY 644
Time: 11.585 ms
COPY 397
Time: 72.746 ms
COPY 1364
Time: 93.050 ms
COPY 137
Time: 36.480 ms
COPY 91
Time: 24.666 ms
COPY 1892
Time: 330.462 ms
COPY 6309
Time: 519.903 ms
COPY 46
Time: 11.066 ms
COPY 1183
Time: 51.618 ms
COPY 2467
Time: 87.788 ms
COPY 815
Time: 26.028 ms
COPY 917
Time: 96.434 ms
COPY 120
Time: 11.796 ms
COPY 358
Time: 45.335 ms
COPY 5642
Time: 218.338 ms
COPY 543
Time: 19.853 ms
COPY 6193
Time: 294.108 ms
COPY 46
Time: 8.493 ms
COPY 359
Time: 19.300 ms
COPY 1492
Time: 202.671 ms
COPY 504
Time: 45.209 ms
COPY 1303
Time: 53.833 ms
COPY 3094
Time: 220.325 ms
COPY 97
Time: 13.122 ms
COPY 7004
Time: 133.557 ms
COPY 4278
Time: 343.458 ms
COPY 5916
Time: 298.875 ms
COPY 1978
Time: 92.800 ms
COPY 1036
Time: 117.808 ms
COPY 1223
Time: 176.271 ms
COPY 21056
Time: 1907.721 ms (00:01.908)
COPY 296
Time: 36.754 ms
COPY 3538
Time: 371.859 ms
COPY 872
Time: 111.970 ms
COPY 5336
Time: 472.233 ms
COPY 396
Time: 60.738 ms
CREATE TABLE
Time: 10.443 ms
COPY 913
Time: 158.811 ms
COPY 70
Time: 18.528 ms
COPY 30331
Time: 2884.282 ms (00:02.884)
COPY 5202
Time: 493.310 ms
COPY 632
Time: 52.270 ms
COPY 273
Time: 22.568 ms
COPY 5050
Time: 372.362 ms
COPY 180
Time: 61.011 ms
COPY 130
Time: 8.082 ms
COPY 2059
Time: 149.940 ms
COPY 3042
Time: 98.973 ms
COPY 324
Time: 12.648 ms
COPY 179
Time: 23.810 ms
COPY 269
Time: 66.853 ms
COPY 622
Time: 111.102 ms
COPY 8990
Time: 722.657 ms
COPY 26
Time: 1.625 ms
COPY 232
Time: 19.429 ms
COPY 3565
Time: 103.273 ms
COPY 65526
Time: 2100.126 ms (00:02.100)
COPY 312
Time: 72.573 ms
COPY 2483
Time: 219.460 ms
COPY 1888
Time: 373.108 ms
COPY 4404
Time: 333.408 ms
COPY 8427
Time: 822.207 ms
COPY 615
Time: 21.160 ms
COPY 146
Time: 32.278 ms
COPY 3348
Time: 1027.372 ms (00:01.027)
COPY 17
Time: 2.067 ms
COPY 810
Time: 103.949 ms
COPY 1206
Time: 254.212 ms
COPY 468
Time: 24.466 ms
COPY 406
Time: 108.158 ms
COPY 7
Time: 1.604 ms
COPY 1106
Time: 442.228 ms
COPY 128
Time: 24.018 ms
COPY 644
Time: 91.062 ms
COPY 2457
Time: 79.224 ms
COPY 68
Time: 37.153 ms
COPY 2440
Time: 187.093 ms
COPY 3268
Time: 93.605 ms
COPY 174
Time: 107.429 ms
COPY 4176
Time: 99.497 ms
COPY 4695
Time: 180.392 ms
COPY 6069
Time: 378.116 ms
COPY 6686
Time: 187.962 ms
COPY 11511
Time: 310.430 ms
COPY 12924
Time: 351.108 ms
COPY 9228
Time: 235.212 ms
COPY 338
Time: 33.605 ms
COPY 17
Time: 5.652 ms
COPY 1167
Time: 40.918 ms
COPY 65
Time: 9.246 ms
COPY 5152
Time: 164.399 ms
COPY 10
Time: 0.674 ms
COPY 51689
Time: 1360.878 ms (00:01.361)
COPY 1150
Time: 39.955 ms
COPY 22418
Time: 848.605 ms
COPY 11071
Time: 675.641 ms
COPY 5308
Time: 319.363 ms
COPY 744
Time: 31.856 ms
COPY 12629
Time: 502.196 ms
COPY 2884
Time: 154.682 ms
COPY 1681
Time: 66.626 ms
COPY 2392
Time: 100.989 ms
COPY 1209
Time: 74.058 ms
COPY 643
Time: 33.647 ms
COPY 153
Time: 35.742 ms
COPY 5662
Time: 245.391 ms
COPY 264
Time: 6.022 ms
COPY 3904
Time: 82.248 ms
COPY 219
Time: 6.632 ms
COPY 3097
Time: 162.340 ms
COPY 6814
Time: 523.343 ms
COPY 804
Time: 72.677 ms
COPY 11
Time: 4.643 ms
COPY 2842
Time: 350.987 ms
COPY 653
Time: 153.156 ms
COPY 178
Time: 106.812 ms
COPY 201
Time: 27.021 ms
COPY 45
Time: 10.992 ms
COPY 2411
Time: 1209.741 ms (00:01.210)
COPY 355
Time: 37.863 ms
COPY 1628
Time: 543.136 ms
COPY 810
Time: 285.150 ms
COPY 41767
Time: 2911.663 ms (00:02.912)
COPY 6097
Time: 715.334 ms
COPY 4262
Time: 511.222 ms
COPY 730
Time: 102.703 ms
COPY 870
Time: 82.765 ms
COPY 4411
Time: 504.483 ms
COPY 550
Time: 53.975 ms
COPY 1674
Time: 133.926 ms
COPY 3654
Time: 473.305 ms
COPY 2974
Time: 135.215 ms
COPY 1720
Time: 413.822 ms
COPY 680
Time: 80.372 ms
COPY 313
Time: 62.649 ms
COPY 385
Time: 110.061 ms
COPY 293
Time: 17.964 ms
COPY 16
Time: 1.024 ms
COPY 511
Time: 70.533 ms
COPY 153
Time: 16.423 ms
COPY 506
Time: 28.989 ms
COPY 75
Time: 7.075 ms
COPY 1
Time: 0.368 ms
COPY 2763
Time: 362.648 ms
COPY 236
Time: 13.748 ms
COPY 2644
Time: 181.097 ms
COPY 899
Time: 260.474 ms
COPY 78
Time: 16.476 ms
COPY 119
Time: 14.457 ms
COPY 315
Time: 53.901 ms
COPY 986
Time: 48.771 ms
COPY 195
Time: 22.108 ms
COPY 110
Time: 6.234 ms
COPY 462
Time: 63.092 ms
COPY 404
Time: 84.292 ms
COPY 72
Time: 21.886 ms
COPY 1289
Time: 181.569 ms
COPY 2253
Time: 118.534 ms
COPY 725
Time: 37.259 ms
COPY 125
Time: 37.417 ms
COPY 3165
Time: 353.219 ms
COPY 183
Time: 11.563 ms
COPY 603
Time: 49.446 ms
COPY 991
Time: 302.685 ms
COPY 71
Time: 41.852 ms
COPY 4467
Time: 372.914 ms
COPY 551
Time: 121.247 ms
COPY 10526
Time: 291.420 ms
COPY 8776
Time: 477.694 ms
COPY 47
Time: 2.299 ms
COPY 966
Time: 51.875 ms
COPY 64
Time: 24.185 ms
COPY 857
Time: 76.375 ms
COPY 401
Time: 59.646 ms
COPY 432
Time: 29.164 ms
COPY 546
Time: 44.465 ms
COPY 1977
Time: 172.423 ms
COPY 219
Time: 10.578 ms
COPY 836
Time: 42.167 ms
COPY 649
Time: 68.766 ms
COPY 13
Time: 2.627 ms
COPY 557
Time: 41.660 ms
COPY 113
Time: 15.854 ms
COPY 252
Time: 27.118 ms
COPY 183
Time: 17.652 ms
COPY 73
Time: 43.355 ms
COPY 169
Time: 88.741 ms
COPY 62
Time: 16.285 ms
COPY 1126
Time: 94.850 ms
COPY 3179
Time: 162.941 ms
COPY 34
Time: 3.004 ms
COPY 621
Time: 28.862 ms
COPY 916
Time: 117.011 ms
COPY 3205
Time: 349.650 ms
COPY 268
Time: 15.780 ms
COPY 252
Time: 24.968 ms
COPY 183
Time: 89.205 ms
COPY 1958
Time: 119.252 ms
COPY 162
Time: 25.833 ms
COPY 270
Time: 49.320 ms
COPY 47
Time: 15.701 ms
COPY 473
Time: 36.191 ms
COPY 554
Time: 29.495 ms
COPY 10
Time: 1.715 ms
COPY 65
Time: 70.159 ms
COPY 1298
Time: 99.919 ms
COPY 1461
Time: 138.557 ms
COPY 2981
Time: 526.319 ms
COPY 217
Time: 16.610 ms
COPY 13103
Time: 1275.719 ms (00:01.276)
COPY 2293
Time: 138.951 ms
COPY 612
Time: 45.364 ms
COPY 315
Time: 73.489 ms
COPY 741
Time: 66.666 ms
COPY 12060
Time: 869.988 ms
COPY 1013
Time: 86.748 ms
CREATE TABLE
Time: 8.382 ms
COPY 659
Time: 57.535 ms
COPY 825
Time: 36.362 ms
COPY 599
Time: 38.171 ms
COPY 323
Time: 19.630 ms
COPY 891
Time: 117.612 ms
COPY 2825
Time: 203.778 ms
COPY 67
Time: 5.581 ms
COPY 1239
Time: 49.909 ms
COPY 1845
Time: 131.971 ms
COPY 947
Time: 82.984 ms
COPY 1586
Time: 201.302 ms
COPY 180
Time: 14.576 ms
COPY 843
Time: 35.629 ms
COPY 402
Time: 125.448 ms
COPY 292
Time: 17.146 ms
COPY 627
Time: 102.496 ms
COPY 2105
Time: 99.404 ms
COPY 1280
Time: 64.777 ms
COPY 89
Time: 8.834 ms
COPY 136
Time: 16.023 ms
COPY 5030
Time: 183.898 ms
COPY 25
Time: 5.329 ms
COPY 3411
Time: 85.253 ms
COPY 47548
Time: 1146.596 ms (00:01.147)
COPY 107
Time: 7.039 ms
COPY 8021
Time: 119.354 ms
COPY 31
Time: 3.850 ms
COPY 272
Time: 87.969 ms
COPY 10
Time: 0.807 ms
COPY 11
Time: 0.442 ms
COPY 39
Time: 3.128 ms
COPY 35
Time: 3.856 ms
COPY 10
Time: 1.378 ms
COPY 4782
Time: 113.684 ms
COPY 33
Time: 5.824 ms
COPY 52
Time: 10.818 ms
COPY 40
Time: 14.002 ms
COPY 119
Time: 13.581 ms
COPY 73
Time: 12.174 ms
COPY 68
Time: 17.459 ms
COPY 134
Time: 10.654 ms
COPY 44
Time: 7.275 ms
COPY 46003
Time: 1667.105 ms (00:01.667)
COPY 1586
Time: 33.675 ms
COPY 80
Time: 2.224 ms
COPY 2628
Time: 129.027 ms
COPY 4625
Time: 106.563 ms
COPY 31
Time: 2.212 ms
COPY 22
Time: 1.020 ms
COPY 101
Time: 2.347 ms
COPY 35
Time: 2.853 ms
COPY 79
Time: 7.257 ms
COPY 48600
Time: 1397.584 ms (00:01.398)
COPY 107276
Time: 3562.648 ms (00:03.563)
COPY 47
Time: 6.432 ms
COPY 1751
Time: 151.250 ms
COPY 37454
Time: 1078.407 ms (00:01.078)
COPY 64162
Time: 2249.727 ms (00:02.250)
COPY 8
Time: 6.751 ms
COPY 12
Time: 4.978 ms
COPY 9687
Time: 474.671 ms
COPY 16959
Time: 344.172 ms
COPY 172703
Time: 3863.773 ms (00:03.864)
COPY 1219
Time: 86.224 ms
COPY 200
Time: 59.630 ms
CREATE TABLE
Time: 6.303 ms
COPY 27160
Time: 4305.776 ms (00:04.306)
COPY 9861
Time: 1463.898 ms (00:01.464)
COPY 49745
Time: 4534.681 ms (00:04.535)
COPY 64331
Time: 7586.504 ms (00:07.587)
CREATE TABLE
Time: 10.744 ms
COPY 62798
Time: 5555.679 ms (00:05.556)
COPY 94812
Time: 5232.212 ms (00:05.232)
COPY 4808
Time: 463.103 ms
COPY 104721
Time: 4511.076 ms (00:04.511)
COPY 30997
Time: 886.670 ms
COPY 52179
Time: 3195.353 ms (00:03.195)
COPY 1112
Time: 173.932 ms
CREATE TABLE
Time: 7.123 ms
COPY 122142
Time: 5967.780 ms (00:05.968)
COPY 39829
Time: 4781.041 ms (00:04.781)
COPY 44447
Time: 2692.740 ms (00:02.693)
COPY 46355
Time: 2545.256 ms (00:02.545)
COPY 88550
Time: 4630.296 ms (00:04.630)
COPY 142997
Time: 6392.410 ms (00:06.392)
COPY 39515
Time: 2343.514 ms (00:02.344)
CREATE TABLE
Time: 7.815 ms
COPY 18
Time: 2.040 ms
COPY 5249
Time: 116.379 ms
COPY 10292
Time: 174.721 ms
COPY 63836
Time: 4258.280 ms (00:04.258)
COPY 102547
Time: 1742.983 ms (00:01.743)
COPY 45364
Time: 1006.833 ms (00:01.007)
COPY 97065
Time: 1628.629 ms (00:01.629)
COPY 74825
Time: 1442.067 ms (00:01.442)
COPY 51290
Time: 1093.238 ms (00:01.093)
COPY 141028
Time: 2241.285 ms (00:02.241)
COPY 9422
Time: 180.426 ms
COPY 1360
Time: 24.697 ms
COPY 7
Time: 0.853 ms
COPY 70473
Time: 1337.725 ms (00:01.338)
COPY 92813
Time: 1561.335 ms (00:01.561)
COPY 22101
Time: 425.441 ms
COPY 468
Time: 8.262 ms
CREATE TABLE
Time: 12.516 ms
COPY 41933
Time: 1058.889 ms (00:01.059)
COPY 249484
Time: 4746.553 ms (00:04.747)
COPY 15888
Time: 264.034 ms
COPY 42655
Time: 1273.998 ms (00:01.274)
COPY 87353
Time: 2193.150 ms (00:02.193)
COPY 29
Time: 1.242 ms
COPY 26320
Time: 1049.257 ms (00:01.049)
COPY 29713
Time: 896.528 ms
COPY 19697
Time: 374.873 ms
COPY 71879
Time: 2494.222 ms (00:02.494)
COPY 39439
Time: 1228.243 ms (00:01.228)
COPY 40370
Time: 1144.801 ms (00:01.145)
COPY 17326
Time: 394.689 ms
COPY 47
Time: 2.312 ms
ALTER TABLE
Time: 1582.321 ms (00:01.582)
ALTER TABLE
Time: 1076.589 ms (00:01.077)
ALTER TABLE
Time: 1064.719 ms (00:01.065)
ALTER TABLE
Time: 431.324 ms
ALTER TABLE
Time: 1806.919 ms (00:01.807)
ALTER TABLE
Time: 708.410 ms
ALTER TABLE
Time: 558.790 ms
ALTER TABLE
Time: 1300.736 ms (00:01.301)
ALTER TABLE
Time: 629.251 ms
ALTER TABLE
Time: 224.412 ms
ALTER TABLE
Time: 332.592 ms
ALTER TABLE
Time: 514.267 ms
ALTER TABLE
Time: 546.992 ms
ALTER TABLE
Time: 553.137 ms
COMMIT
Time: 3.469 ms
finish OSM database initialization
Timing is on.
You are now connected to database "osmworld" as user "postgres".
BEGIN
Time: 0.167 ms
CREATE TABLE
Time: 14.293 ms
COPY 142267
Time: 28490.717 ms (00:28.491)
SELECT 142267
Time: 7507.555 ms (00:07.508)
SELECT 142267
Time: 10775.951 ms (00:10.776)
ALTER TABLE
Time: 216.953 ms
ALTER TABLE
Time: 58.342 ms
ALTER TABLE
Time: 55.579 ms
ALTER TABLE
Time: 62.279 ms
ALTER TABLE
Time: 66.796 ms
ALTER TABLE
Time: 62.807 ms
ALTER TABLE
Time: 67.795 ms
ALTER TABLE
Time: 65.972 ms
ALTER TABLE
Time: 71.229 ms
ALTER TABLE
Time: 80.288 ms
2023-02-10 10:28:57.412 UTC [176] ERROR:  canceling autovacuum task
2023-02-10 10:28:57.412 UTC [176] CONTEXT:  while scanning block 86598 of relation "public.ways_048"
	automatic vacuum of table "osmworld.public.ways_048"
2023-02-10 10:28:58.413 UTC [180] ERROR:  canceling autovacuum task
2023-02-10 10:28:58.413 UTC [180] CONTEXT:  while scanning block 95476 of relation "public.ways_022"
	automatic vacuum of table "osmworld.public.ways_022"
2023-02-10 10:28:59.414 UTC [176] ERROR:  canceling autovacuum task
2023-02-10 10:28:59.414 UTC [176] CONTEXT:  while scanning block 2653 of relation "public.ways_049"
	automatic vacuum of table "osmworld.public.ways_049"
2023-02-10 10:29:00.414 UTC [176] ERROR:  canceling autovacuum task
2023-02-10 10:29:00.414 UTC [176] CONTEXT:  while scanning block 1326 of relation "public.ways_050"
	automatic vacuum of table "osmworld.public.ways_050"
2023-02-10 10:29:01.415 UTC [196] ERROR:  canceling autovacuum task
2023-02-10 10:29:01.415 UTC [196] CONTEXT:  while scanning block 13787 of relation "public.ways_023"
	automatic vacuum of table "osmworld.public.ways_023"
2023-02-10 10:29:02.415 UTC [176] ERROR:  canceling autovacuum task
2023-02-10 10:29:02.415 UTC [176] CONTEXT:  while scanning block 2692 of relation "public.ways_051"
	automatic vacuum of table "osmworld.public.ways_051"
2023-02-10 10:29:02.416 UTC [176] LOG:  skipping vacuum of "ways_044" --- lock not available
2023-02-10 10:29:03.416 UTC [180] ERROR:  canceling autovacuum task
2023-02-10 10:29:03.416 UTC [180] CONTEXT:  while scanning block 6678 of relation "public.ways_024"
	automatic vacuum of table "osmworld.public.ways_024"
2023-02-10 10:29:03.416 UTC [180] LOG:  skipping vacuum of "ways_048" --- lock not available
2023-02-10 10:29:03.416 UTC [180] LOG:  skipping vacuum of "ways_049" --- lock not available
2023-02-10 10:29:03.416 UTC [180] LOG:  skipping vacuum of "ways_050" --- lock not available
2023-02-10 10:29:03.416 UTC [180] LOG:  skipping vacuum of "ways_051" --- lock not available
2023-02-10 10:29:03.416 UTC [180] LOG:  skipping vacuum of "ways_016" --- lock not available
2023-02-10 10:29:04.416 UTC [196] ERROR:  canceling autovacuum task
2023-02-10 10:29:04.416 UTC [196] CONTEXT:  while scanning block 3994 of relation "public.ways_025"
	automatic vacuum of table "osmworld.public.ways_025"
2023-02-10 10:29:04.416 UTC [196] LOG:  skipping vacuum of "ways_048" --- lock not available
2023-02-10 10:29:04.416 UTC [196] LOG:  skipping vacuum of "ways_049" --- lock not available
2023-02-10 10:29:04.416 UTC [196] LOG:  skipping vacuum of "ways_050" --- lock not available
2023-02-10 10:29:04.417 UTC [196] LOG:  skipping vacuum of "ways_051" --- lock not available
2023-02-10 10:29:04.417 UTC [196] LOG:  skipping vacuum of "ways_016" --- lock not available
2023-02-10 10:29:05.417 UTC [180] ERROR:  canceling autovacuum task
2023-02-10 10:29:05.417 UTC [180] CONTEXT:  while scanning block 2650 of relation "public.ways_026"
	automatic vacuum of table "osmworld.public.ways_026"
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_007" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_008" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_009" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_010" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_044" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_014" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_015" --- lock not available
2023-02-10 10:29:05.417 UTC [180] LOG:  skipping vacuum of "ways_017" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_018" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_019" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_020" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_021" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_000" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_001" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_002" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_003" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_004" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_005" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_006" --- lock not available
2023-02-10 10:29:05.418 UTC [180] LOG:  skipping vacuum of "ways_011" --- lock not available
2023-02-10 10:29:06.417 UTC [196] ERROR:  canceling autovacuum task
2023-02-10 10:29:06.417 UTC [196] CONTEXT:  while scanning block 2650 of relation "public.ways_027"
	automatic vacuum of table "osmworld.public.ways_027"
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_007" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_008" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_009" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_010" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_044" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_014" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_015" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_017" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_018" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_019" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_020" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_021" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_000" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_001" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_002" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_003" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_004" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_005" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_006" --- lock not available
2023-02-10 10:29:06.418 UTC [196] LOG:  skipping vacuum of "ways_011" --- lock not available
2023-02-10 10:29:07.418 UTC [180] ERROR:  canceling autovacuum task
2023-02-10 10:29:07.418 UTC [180] CONTEXT:  while scanning block 2644 of relation "public.ways_012"
	automatic vacuum of table "osmworld.public.ways_012"
2023-02-10 10:29:08.418 UTC [196] ERROR:  canceling autovacuum task
2023-02-10 10:29:08.418 UTC [196] CONTEXT:  while scanning block 2554 of relation "public.ways_013"
	automatic vacuum of table "osmworld.public.ways_013"
2023-02-10 10:29:08.418 UTC [196] LOG:  skipping vacuum of "ways_028" --- lock not available
2023-02-10 10:29:08.418 UTC [196] LOG:  skipping vacuum of "ways_029" --- lock not available
2023-02-10 10:29:08.418 UTC [196] LOG:  skipping vacuum of "ways_030" --- lock not available
2023-02-10 10:29:08.418 UTC [196] LOG:  skipping vacuum of "ways_031" --- lock not available
2023-02-10 10:29:08.418 UTC [196] LOG:  skipping vacuum of "ways_032" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_033" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_034" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_035" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_036" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_037" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_038" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_039" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_040" --- lock not available
2023-02-10 10:29:08.419 UTC [196] LOG:  skipping vacuum of "ways_041" --- lock not available
ALTER TABLE
Time: 12015.547 ms (00:12.016)
ALTER TABLE
Time: 463.410 ms
DROP TABLE
Time: 2.065 ms
DROP TABLE
Time: 0.392 ms
COPY 1235952
Time: 4344.467 ms (00:04.344)
COPY 8777120
Time: 10355.381 ms (00:10.355)
ALTER TABLE
Time: 6075.567 ms (00:06.076)
COMMIT
Time: 63.115 ms
You are now connected to database "osmworld" as user "postgres".
Timing is on.
CREATE TABLE
Time: 20.129 ms
CREATE EXTENSION
Time: 28.875 ms
DELETE 0
Time: 1178.010 ms (00:01.178)
SELECT 1005638
Time: 39037.199 ms (00:39.037)
SELECT 1005638
Time: 28855.939 ms (00:28.856)
CREATE INDEX
Time: 608.697 ms
CREATE INDEX
Time: 634.716 ms
INSERT 0 1005638
Time: 116568.549 ms (01:56.569)
CREATE INDEX
Time: 4211.075 ms (00:04.211)
CREATE INDEX
Time: 2673.271 ms (00:02.673)
CREATE INDEX
Time: 1848.062 ms (00:01.848)
DROP TABLE
Time: 7.816 ms
DROP TABLE
Time: 8.617 ms
DROP TABLE
Time: 165.294 ms
ANALYZE
Time: 10125.244 ms (00:10.125)
2023-02-10 10:33:00.717 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:00.717 UTC [207] CONTEXT:  while scanning block 69928 of relation "public.ways_028"
	automatic vacuum of table "osmworld.public.ways_028"
2023-02-10 10:33:05.315 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:05.315 UTC [222] CONTEXT:  while scanning block 17792 of relation "public.ways_029"
	automatic vacuum of table "osmworld.public.ways_029"
2023-02-10 10:33:07.825 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:07.825 UTC [207] CONTEXT:  while scanning block 9600 of relation "public.ways_016"
	automatic vacuum of table "osmworld.public.ways_016"
2023-02-10 10:33:09.839 UTC [218] ERROR:  canceling autovacuum task
2023-02-10 10:33:09.839 UTC [218] CONTEXT:  while scanning block 11502 of relation "public.ways_044"
	automatic vacuum of table "osmworld.public.ways_044"
2023-02-10 10:33:11.486 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:11.486 UTC [222] CONTEXT:  while scanning block 8182 of relation "public.ways_002"
	automatic vacuum of table "osmworld.public.ways_002"
2023-02-10 10:33:13.181 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:13.181 UTC [207] CONTEXT:  while scanning block 7224 of relation "public.ways_017"
	automatic vacuum of table "osmworld.public.ways_017"
2023-02-10 10:33:14.886 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:14.886 UTC [222] CONTEXT:  while scanning block 4605 of relation "public.ways_030"
	automatic vacuum of table "osmworld.public.ways_030"
2023-02-10 10:33:17.008 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:17.008 UTC [207] CONTEXT:  while scanning block 5145 of relation "public.ways_018"
	automatic vacuum of table "osmworld.public.ways_018"
2023-02-10 10:33:19.615 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:19.615 UTC [222] CONTEXT:  while scanning block 6321 of relation "public.ways_003"
	automatic vacuum of table "osmworld.public.ways_003"
2023-02-10 10:33:21.584 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:21.584 UTC [207] CONTEXT:  while scanning block 6138 of relation "public.ways_019"
	automatic vacuum of table "osmworld.public.ways_019"
2023-02-10 10:33:24.794 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:24.794 UTC [222] CONTEXT:  while scanning block 6990 of relation "public.ways_004"
	automatic vacuum of table "osmworld.public.ways_004"
2023-02-10 10:33:26.482 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:26.482 UTC [207] CONTEXT:  while scanning block 6660 of relation "public.ways_031"
	automatic vacuum of table "osmworld.public.ways_031"
2023-02-10 10:33:28.185 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:28.185 UTC [222] CONTEXT:  while scanning block 4574 of relation "public.ways_032"
	automatic vacuum of table "osmworld.public.ways_032"
2023-02-10 10:33:30.966 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:30.966 UTC [207] CONTEXT:  while scanning block 6069 of relation "public.ways_005"
	automatic vacuum of table "osmworld.public.ways_005"
2023-02-10 10:33:33.045 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:33.045 UTC [222] CONTEXT:  while scanning block 6555 of relation "public.ways_020"
	automatic vacuum of table "osmworld.public.ways_020"
2023-02-10 10:33:34.954 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:34.954 UTC [207] CONTEXT:  while scanning block 91950 of relation "public.ways_048"
	automatic vacuum of table "osmworld.public.ways_048"
2023-02-10 10:33:36.720 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:36.720 UTC [222] CONTEXT:  while scanning block 5013 of relation "public.ways_021"
	automatic vacuum of table "osmworld.public.ways_021"
2023-02-10 10:33:39.371 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:39.371 UTC [207] CONTEXT:  while scanning block 6033 of relation "public.ways_006"
	automatic vacuum of table "osmworld.public.ways_006"
2023-02-10 10:33:42.030 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:42.030 UTC [222] CONTEXT:  while scanning block 9922 of relation "public.ways_049"
	automatic vacuum of table "osmworld.public.ways_049"
2023-02-10 10:33:43.746 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:43.746 UTC [207] CONTEXT:  while scanning block 6015 of relation "public.ways_007"
	automatic vacuum of table "osmworld.public.ways_007"
2023-02-10 10:33:45.646 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:45.646 UTC [222] CONTEXT:  while scanning block 4926 of relation "public.ways_033"
	automatic vacuum of table "osmworld.public.ways_033"
2023-02-10 10:33:47.673 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:47.673 UTC [207] CONTEXT:  while scanning block 6609 of relation "public.ways_050"
	automatic vacuum of table "osmworld.public.ways_050"
2023-02-10 10:33:49.559 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:49.559 UTC [222] CONTEXT:  while scanning block 5253 of relation "public.ways_008"
	automatic vacuum of table "osmworld.public.ways_008"
2023-02-10 10:33:51.424 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:51.424 UTC [207] CONTEXT:  while scanning block 5040 of relation "public.ways_034"
	automatic vacuum of table "osmworld.public.ways_034"
2023-02-10 10:33:54.167 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:54.167 UTC [222] CONTEXT:  while scanning block 6315 of relation "public.ways_009"
	automatic vacuum of table "osmworld.public.ways_009"
2023-02-10 10:33:56.744 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:33:56.744 UTC [207] CONTEXT:  while scanning block 10036 of relation "public.ways_051"
	automatic vacuum of table "osmworld.public.ways_051"
2023-02-10 10:33:58.439 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:33:58.439 UTC [222] CONTEXT:  while scanning block 5865 of relation "public.ways_035"
	automatic vacuum of table "osmworld.public.ways_035"
2023-02-10 10:34:00.195 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:34:00.195 UTC [207] CONTEXT:  while scanning block 11418 of relation "public.ways_024"
	automatic vacuum of table "osmworld.public.ways_024"
2023-02-10 10:34:02.095 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:34:02.095 UTC [222] CONTEXT:  while scanning block 4931 of relation "public.ways_010"
	automatic vacuum of table "osmworld.public.ways_010"
2023-02-10 10:34:04.037 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:34:04.037 UTC [207] CONTEXT:  while scanning block 9160 of relation "public.ways_025"
	automatic vacuum of table "osmworld.public.ways_025"
2023-02-10 10:34:06.737 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:34:06.737 UTC [222] CONTEXT:  while scanning block 6309 of relation "public.ways_011"
	automatic vacuum of table "osmworld.public.ways_011"
2023-02-10 10:34:08.841 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:34:08.841 UTC [207] CONTEXT:  while scanning block 9225 of relation "public.ways_026"
	automatic vacuum of table "osmworld.public.ways_026"
2023-02-10 10:34:11.314 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:34:11.314 UTC [222] CONTEXT:  while scanning block 8900 of relation "public.ways_027"
	automatic vacuum of table "osmworld.public.ways_027"
2023-02-10 10:34:13.162 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:34:13.162 UTC [207] CONTEXT:  while scanning block 8530 of relation "public.ways_012"
	automatic vacuum of table "osmworld.public.ways_012"
2023-02-10 10:34:15.601 UTC [222] ERROR:  canceling autovacuum task
2023-02-10 10:34:15.601 UTC [222] CONTEXT:  while scanning block 8428 of relation "public.ways_013"
	automatic vacuum of table "osmworld.public.ways_013"
2023-02-10 10:34:20.168 UTC [207] ERROR:  canceling autovacuum task
2023-02-10 10:34:20.168 UTC [207] CONTEXT:  while scanning block 9567 of relation "public.ways_041"
	automatic vacuum of table "osmworld.public.ways_041"
ANALYZE
Time: 88176.862 ms (01:28.177)
2023-02-10 10:34:26.828 UTC [322] LOG:  skipping analyze of "multipolygon_005" --- lock not available
2023-02-10 10:34:28.083 UTC [322] LOG:  skipping analyze of "multipolygon_007" --- lock not available
2023-02-10 10:34:30.982 UTC [322] LOG:  skipping analyze of "multipolygon_011" --- lock not available
2023-02-10 10:34:31.461 UTC [322] LOG:  skipping analyze of "multipolygon_013" --- lock not available
2023-02-10 10:34:33.353 UTC [322] LOG:  skipping analyze of "multipolygon_018" --- lock not available
2023-02-10 10:34:35.150 UTC [322] LOG:  skipping analyze of "multipolygon_022" --- lock not available
2023-02-10 10:34:45.896 UTC [322] LOG:  skipping analyze of "multipolygon_032" --- lock not available
2023-02-10 10:34:49.400 UTC [322] LOG:  skipping analyze of "multipolygon_039" --- lock not available
2023-02-10 10:34:49.737 UTC [322] LOG:  skipping analyze of "multipolygon_041" --- lock not available
2023-02-10 10:34:49.866 UTC [322] LOG:  skipping analyze of "multipolygon_042" --- lock not available
2023-02-10 10:34:50.371 UTC [322] LOG:  skipping analyze of "multipolygon_044" --- lock not available
2023-02-10 10:34:51.350 UTC [322] LOG:  skipping analyze of "multipolygon_048" --- lock not available
ANALYZE
Time: 29430.277 ms (00:29.430)
ANALYZE
Time: 401.768 ms
ANALYZE
Time: 631.486 ms
CREATE TABLE
Time: 3.830 ms
COPY 1
Time: 2.871 ms
ANALYZE
Time: 2.777 ms
CREATE TABLE
Time: 3.020 ms
COPY 6514
Time: 19.687 ms
ANALYZE
Time: 17.348 ms
CREATE TABLE
Time: 3.317 ms
COPY 846214
Time: 1601.350 ms (00:01.601)
ANALYZE
Time: 225.294 ms
SELECT 1784
Time: 162.692 ms
ANALYZE
Time: 5.854 ms
SELECT 1825
Time: 173.216 ms
ANALYZE
Time: 4.929 ms

2023-02-10 10:34:56.582 UTC [49] LOG:  received fast shutdown request
waiting for server to shut down....2023-02-10 10:34:56.588 UTC [49] LOG:  aborting any active transactions
2023-02-10 10:34:56.588 UTC [218] FATAL:  terminating autovacuum process due to administrator command
2023-02-10 10:34:56.588 UTC [218] CONTEXT:  while scanning block 46806 of relation "public.ways_018"
2023-02-10 10:34:56.589 UTC [322] FATAL:  terminating autovacuum process due to administrator command
2023-02-10 10:34:56.589 UTC [322] CONTEXT:  while scanning block 79120 of relation "public.ways_028"
2023-02-10 10:34:56.591 UTC [49] LOG:  background worker "logical replication launcher" (PID 55) exited with exit code 1
........2023-02-10 10:35:04.712 UTC [50] LOG:  checkpoint complete: wrote 70411 buffers (13.4%); 0 WAL file(s) added, 0 removed, 1078 recycled; write=603.222 s, sync=0.886 s, total=611.224 s; sync files=1646, longest=0.289 s, average=0.001 s; distance=17656858 kB, estimate=17656858 kB
2023-02-10 10:35:04.714 UTC [50] LOG:  shutting down
2023-02-10 10:35:04.720 UTC [50] LOG:  checkpoint starting: shutdown immediate
........2023-02-10 10:35:12.784 UTC [50] LOG:  checkpoint complete: wrote 320141 buffers (61.1%); 0 WAL file(s) added, 0 removed, 823 recycled; write=2.600 s, sync=0.079 s, total=8.071 s; sync files=420, longest=0.051 s, average=0.001 s; distance=13484815 kB, estimate=17239653 kB
2023-02-10 10:35:13.258 UTC [49] LOG:  database system is shut down
 done
server stopped

PostgreSQL init process complete; ready for start up.

Подключаемся к базе данных

Подключимся к базе данных любым удобным для вас клиентом. Для меня это выглядит так, если на компьютере нет ничего кроме докера:

$ docker exec -it postgis15-russia_08_01_2023 psql -U postgres -d osmworld

psql (15.1 (Debian 15.1-1.pgdg110+1))
Type "help" for help.

osmworld=# \d

Или так, если psql установлен локально:

$ PSQL_PAGER="pspg" psql -h 172.17.0.1 -p 5432 -U postgres -d osmworld
Password for user postgres: 
???? ???? postgres_dba 6.0 installed. Use ":dba" to see menu
Timing is on.
psql (14.6 (Ubuntu 14.6-1.pgdg20.04+1), server 15.1 (Debian 15.1-1.pgdg110+1))
WARNING: psql major version 14, server major version 15.
         Some psql features might not work.
Type "help" for help.

osmworld=# :dba
Time: 2,417 ms
Time: 0,200 ms
Time: 0,149 ms
Time: 0,427 ms
Menu:
   0 – Node & current DB information: master/replica, lag, DB size, tmp files, etc.
   1 – Databases: size, stats
   2 – Tables: table/index/TOAST size, number of rows
   3 – Load profile
  a1 – Current activity: count of current connections grouped by database, user name, state
  b1 – Table bloat (estimated)
  b2 – B-tree index bloat (estimated)
  b3 – Table bloat (requires pgstattuple; expensive)
  b4 – B-tree indexes bloat (requires pgstattuple; expensive)
  b5 – Tables and columns without stats (so bloat cannot be estimated)
  e1 – Extensions installed in current DB
  i1 – Unused and rarely used indexes
  i2 – Redundant indexes
  i3 – FKs with Missing/Bad Indexes
  i4 – Invalid indexes
  i5 – Cleanup unused and redundant indexes – DO & UNDO migration DDL
  l1 – Lock trees (leightweight)
  l2 – Lock trees, detailed (based on pg_blocking_pids())
  p1 – [EXP] Alignment padding: how many bytes can be saved if columns are reordered?
  s1 – Slowest queries, by total time (requires pg_stat_statements)
  s2 – Slowest queries report (requires pg_stat_statements)
  t1 – Postgres parameters tuning
  v1 – Vacuum: current activity
  v2 – Vacuum: VACUUM progress and autovacuum queue
   q – Quit

Type your choice and press <Enter>:
0
Time: 0,814 ms
              metric               |                                                            value                                                            
-----------------------------------+-----------------------------------------------------------------------------------------------------------------------------
 Postgres Version                  | PostgreSQL 15.1 (Debian 15.1-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
 Config file                       | /var/lib/postgresql/data/postgresql.conf
 Role                              | Master
 Replicas                          | 
 Started At                        | 2023-02-10 10:35:13+00
 Uptime                            | 00:26:01
 Checkpoints                       | 3
 Forced Checkpoints                | 66.7%
 Checkpoint MB/sec                 | 1.250454
 --------------------------------- | ----------------------------------------------------------------------------------------
 Database Name                     | osmworld
 Database Size                     | 31 GB
 Stats Since                       | 
 Stats Age                         | 
 Installed Extensions              | h3 4.1.1, hstore 1.8, plpgsql 1.0, postgis 3.3.2
 Cache Effectiveness               | 63.22%
 Successful Commits                | 96.72%
 Conflicts                         | 0
 Temp Files: total size            | 3999 MB
 Temp Files: total number of files | 2266
 Temp Files: avg file size         | 1807 kB
 Deadlocks                         | 0
(22 rows)

Time: 27,387 ms

Type your choice and press <Enter>:
1
Time: 7,768 ms
     Database     |      Size       | Stats Age | Cache eff. | Committed | Conflicts | Deadlocks |  Temp. Files   
------------------+-----------------+-----------+------------+-----------+-----------+-----------+----------------
 *** TOTAL ***    | 32 GB (100.00%) |           | 70.68%     | 98.12%    |         0 |         0 | 2266 (3999 MB)
                  |                 |           |            |           |           |           | 
 osmworld         | 31 GB (99.84%)  |           | 70.37%     | 96.67%    |         0 |         0 | 2266 (3999 MB)
 postgres         | 19 MB (0.06%)   |           | 99.10%     | 100.00%   |         0 |         0 | 0 (0 bytes)
 template_postgis | 19 MB (0.06%)   |           | 99.35%     | 100.00%   |         0 |         0 | 0 (0 bytes)
 template1        | 7541 kB (0.02%) |           | 98.77%     | 100.00%   |         0 |         0 | 0 (0 bytes)
 template0        | 7297 kB (0.02%) |           |            |           |         0 |         0 | 0 (0 bytes)
(7 rows)

Time: 20,052 ms

Видим, что объем геоданных России после импорта 31 GB

Анализ дорог России в OpenStreetMap

Под дорогами мы будем подразумевать объект ways у которого указан тег highway.

Сначала посчитаем общую протяженность всех дорог, тротуаров, грунтовок, троп:

osmworld=# select sum(ST_Length(linestring::geography)) 
            from ways 
            where tags->'highway' is not null 
              and tags->'highway' not in ('platform','bus_stop','corridor','rest_area');
        sum        
-------------------
 4265048225.969036
(1 row)

Time: 40327,153 ms (00:40,327)

Сделаем то же самое только для тех, где указан тип покрытия.

osmworld=# select sum(ST_Length(linestring::geography)) 
            from ways 
            where tags->'highway' is not null 
              and tags->'highway' not in ('platform','bus_stop','corridor','rest_area') 
              and tags->'surface' is not null;
        sum         
--------------------
 1162078367.3424017
(1 row)

Time: 18327,292 ms (00:18,327)

Теперь просуммируем по типу покрытия:

osmworld=# select 
              tags->'surface' "surface_type", 
              sum(ST_Length(linestring::geography)) 
            from ways 
            where tags->'highway' is not null 
              and tags->'highway' not in ('platform','bus_stop','corridor','rest_area') 
              and tags->'surface' is not null 
            group by 1 
            having count(*) >=100 
            order by 2 desc;

    surface_type    |        sum         
--------------------+--------------------
 asphalt            | 430868133.30343676
 ground             |  262473805.9179415
 unpaved            |  240387375.9983653
 gravel             |  78332148.92070013
 compacted          |  36969331.58866592
 dirt               |  25271945.00821383
 sand               | 24264349.621536754
 paved              | 17773054.487474207
 grass              | 12429491.019503374
 concrete           |  7420903.201255292
 paving_stones      |  6793228.516838266
 mud                | 4084944.0696652583
 fine_gravel        |  3371811.422795724
 earth              |   2282097.83807898
 concrete:plates    | 1746780.2139742924
 pebblestone        | 1078949.0183994707
 ice                | 1034165.5795593454
 cobblestone        |  957025.7894887205
 wood               |    623125.52620137
 concrete:lanes     |  312332.1536163231
 sett               | 265047.78117813024
 dirt/sand          | 116421.04363655325
 grass_paver        | 104233.99901191493
 rock               |  69688.57325055783
 metal              | 56100.916193288154
 tartan             | 26390.615678493265
 unhewn_cobblestone | 20658.465225839944
 granite            | 15093.016404308555
(28 rows)

Time: 18483,135 ms (00:18,483)

Теперь посмотрим протяженность по типу дорог:

osmworld=# select tags->'highway',sum(ST_Length(linestring::geography)) 
from ways where tags->'highway' is not null 
 and tags->'highway' not in ('platform','bus_stop','corridor','rest_area')
group by 1 having count(*)>=100 order by 2 desc;

    ?column?    |        sum         
----------------+--------------------
 track          | 1658443546.8776355
 residential    |  587152341.7268271
 unclassified   |  545354890.8040892
 service        |  495729464.5068484
 tertiary       |  368264397.3916858
 path           |  182206284.2386946
 secondary      | 131110086.46780886
 footway        |  95751608.42595017
 primary        |  79216830.90296516
 trunk          |  71018537.48982106
 living_street  | 13574414.604529105
 road           |  11523156.26082035
 construction   |  6261486.030197534
 proposed       |  4289390.179882147
 motorway       | 3227661.2835875247
 pedestrian     | 1870760.8457512963
 cycleway       | 1672617.3291957052
 trunk_link     | 1463525.7298084942
 bridleway      | 1432662.4915106934
 primary_link   | 1316043.3831060682
 steps          | 1114401.0351566516
 secondary_link | 1056874.1903738207
 raceway        |  939396.1632468842
 tertiary_link  |  915645.7837253502
 motorway_link  |   54267.4267808306
 services       |  41741.30065791015
(26 rows)

Time: 39793,304 ms (00:39,793)

И добавим к типу дорог тип покрытия:

osmworld=# select tags->'highway' "road_type",
                  tags->'surface' "surface_type",
                  sum(ST_Length(linestring::geography)) 
            from ways 
            where tags->'highway' is not null 
              and tags->'highway' not in ('platform','bus_stop','corridor','rest_area')
            group by 1,2 
            having count(*)>=100 
            order by 3 desc;

   road_type    |  surface_type   |        sum         
----------------+-----------------+--------------------
 track          |                 | 1363655395.6206474
 residential    |                 | 477267924.11724627
 service        |                 |  392664010.7476436
 unclassified   |                 |  362023612.5621188
 tertiary       |                 |  213350158.0659542
 track          | ground          | 165628775.13189304
 path           |                 |  158523118.9672377
 tertiary       | asphalt         |  95685548.66325985
 secondary      | asphalt         |  85020586.90320502
 unclassified   | unpaved         |   78295897.9067522
 track          | unpaved         |   73771503.7811497
 trunk          | asphalt         |  63469206.94968563
 primary        | asphalt         |  62851339.52353224
 footway        |                 | 60501504.936788775
 residential    | unpaved         | 37191911.938064665
 unclassified   | ground          |  35288648.75226416
 service        | asphalt         | 32817258.383532137
 service        | unpaved         |  32050153.54756737
 secondary      |                 |  31558273.86656443
 residential    | asphalt         | 31065086.647267602
 footway        | asphalt         | 23742905.572440397
 unclassified   | asphalt         |  22795390.83553362
 tertiary       | gravel          | 21104193.970237706
 residential    | ground          |   19337500.9125577
 unclassified   | gravel          |  17920989.17028908
 service        | ground          |  16799899.98828414
 track          | dirt            | 15334604.219865754
 track          | sand            |  14348580.47889365
 path           | ground          |  12662731.93820613
 unclassified   | compacted       | 12118958.078884285
 tertiary       | unpaved         |  11762566.34091591
 road           |                 | 10290967.118021376
 residential    | gravel          |  9779046.327100394
 primary        |                 |  9205351.701134028
 tertiary       | compacted       |  8951422.353359506
 track          | grass           |  8702375.055872913
 living_street  |                 |  8701247.322820406
 service        | gravel          |  8197589.977846805
 tertiary       | ground          |  6831075.458209775
 secondary      | gravel          |  6706266.210769892
 track          | gravel          |   6009549.59590597
 footway        | paving_stones   |  5871114.303263284
 residential    | compacted       |  4938749.514640626
 unclassified   | sand            |  4853065.445632798
 tertiary       | paved           | 4015232.3411469855
 proposed       |                 |  3911457.726697251
 trunk          | gravel          | 3906462.3921905137
 service        | paved           |  3711940.312678014
 service        | compacted       | 3581532.8645067266
 unclassified   | dirt            |  3353801.147103164
 path           | unpaved         |     3267645.673013
 motorway       | asphalt         |  3221183.915611593
 construction   |                 | 3179831.5080184033
 unclassified   | paved           |  2886843.186141891
 track          | mud             |  2873246.109418523
 construction   | asphalt         |  2828344.615458439
 track          | compacted       |  2667135.556833842
 residential    | paved           | 2576645.5259573655
 primary        | gravel          | 2365334.8091922817
 trunk          |                 | 2303068.3939654506
 path           | grass           |  2190265.454333037
 secondary      | compacted       | 2116249.3962897137
 unclassified   | concrete        |  2008501.936812294
 path           | dirt            | 1973946.5661819896
 secondary      | unpaved         |  1879776.433721697
 tertiary       | concrete        |  1850994.353011901
 living_street  | ground          | 1796313.7364093172
 service        | sand            | 1560919.4586587753
 residential    | dirt            |  1520634.479171553
 track          | paved           |  1425229.385779611
 track          | earth           |  1394223.193724468
 residential    | sand            | 1355506.4485336074
 bridleway      |                 | 1337930.7363888884
 primary        | ground          | 1231386.3812802678
 secondary      | paved           | 1216055.0803004745
 secondary      | ground          |  1208759.589547943
 service        | concrete        | 1205352.3190917512
 living_street  | gravel          | 1191458.8944626777
 footway        | compacted       |   1185821.07956197
 tertiary       | sand            |   1182093.00006779
 pedestrian     |                 | 1151175.3826044565
 trunk_link     | asphalt         | 1116035.4664023751
 primary_link   | asphalt         | 1089806.3097974083
 tertiary       | dirt            |  926498.7959950715
 footway        | paved           |   916390.437144806
 living_street  | asphalt         |  912631.4380476307
 cycleway       | asphalt         |   901707.782285481
 service        | dirt            |  889432.8595404922
 steps          |                 |  875260.9820612662
 primary        | compacted       |  874075.2615437285
 secondary_link | asphalt         |  864369.5583927333
 footway        | ground          |  811324.9738301542
 unclassified   | grass           |   700895.676090823
 unclassified   | fine_gravel     |    690192.34928854
 track          | asphalt         |  685447.9670287224
 secondary      | concrete        |  671039.9952713973
 track          | fine_gravel     |   646551.777760005
 living_street  | unpaved         |   644648.951106741
 path           | gravel          |  617636.5747044736
 service        | fine_gravel     |  596723.1475747322
 cycleway       |                 |   590381.245050827
 raceway        |                 |  575223.2976324841
 road           | unpaved         |  558824.6143379918
 footway        | concrete        |   541895.118386135
 unclassified   | concrete:plates |  529671.0817936738
 road           | ground          |  496895.7752382228
 path           | asphalt         | 490507.57860527467
 tertiary_link  |                 |  475378.2678576941
 service        | concrete:plates | 472476.90658467374
 residential    | concrete        | 461335.23489959975
 footway        | unpaved         | 453921.76005138614
 residential    | fine_gravel     | 452975.70570941776
 tertiary       | fine_gravel     |  449746.3031369222
 unclassified   | mud             |  433437.7146857515
 path           | sand            |  430493.3830242979
 tertiary_link  | asphalt         |  415365.8314084385
 path           | compacted       | 408650.70008038386
 footway        | gravel          | 396875.34779748204
 path           | mud             | 383609.42846502585
 proposed       | asphalt         |  367605.7674328272
 service        | grass           | 356422.10212573083
 footway        | fine_gravel     |  348890.8320032721
 trunk_link     |                 | 339648.27332777926
 pedestrian     | asphalt         |  336605.0304410114
 unclassified   | earth           | 331146.42839755514
 primary        | paved           | 330218.32114297437
 residential    | grass           |  324328.4563775268
 path           | paved           | 312005.94931809016
 tertiary       | cobblestone     |  284808.1691232294
 path           | earth           |  263979.8943811953
 service        | paving_stones   |  263932.4347952704
 pedestrian     | paving_stones   | 254536.34234048828
 footway        | wood            | 235329.64249747683
 track          | concrete        |  220504.7177597773
 primary_link   |                 |  219387.0532497953
 tertiary       | concrete:plates |  212491.7939164396
 trunk          | concrete        | 188371.57866226346
 secondary_link |                 | 187065.22613031458
 unclassified   | pebblestone     |  186851.5363447714
 footway        | dirt            | 184392.73325971214
 residential    | concrete:plates |  170575.8857338053
 trunk          | paved           | 164807.11719273636
 track          | pebblestone     | 146966.81121192832
 service        | mud             | 133051.49077279083
 raceway        | ground          |   131879.719874941
 path           | wood            | 127316.23904287326
 unclassified   | cobblestone     | 120125.29308770453
 service        | pebblestone     | 119803.90984374503
 track          | wood            | 119748.60739048872
 residential    | earth           | 119308.13205309288
 living_street  | paved           | 111619.42844598231
 footway        | concrete:plates | 105978.83529770191
 residential    | cobblestone     |  103172.3110259876
 living_street  | compacted       |  98174.37304444908
 footway        | sett            |  97370.68290590945
 residential    | pebblestone     |  95879.26938617858
 track          | ice             |  91430.17746809908
 service        | earth           |   86142.5407129449
 path           | paving_stones   |  81922.18307971816
 footway        | grass           |  81764.48825510767
 residential    | mud             |  79895.91375993312
 raceway        | asphalt         |  78387.36902055214
 unclassified   | ice             |  75340.41206014651
 residential    | paving_stones   |  74111.67216552181
 path           | pebblestone     |  72434.56602569958
 path           | fine_gravel     |  72324.70344198044
 steps          | concrete        |  67952.62807990979
 footway        | cobblestone     |  66854.02918188722
 living_street  | sand            |  65405.74675401942
 steps          | paving_stones   |  64314.08948780064
 service        | cobblestone     |  55653.10892963547
 motorway_link  | asphalt         |  51791.12175185653
 track          | concrete:plates |  51441.55087593674
 path           | concrete        |   50690.7100760098
 unclassified   | wood            | 49818.179331335596
 footway        | sand            |  48057.32166567564
 services       |                 |  40442.21050495987
 service        | wood            | 40277.759937941526
 residential    | sett            | 34707.512635748346
 service        | concrete:lanes  |  30763.64493249241
 steps          | asphalt         | 29055.277037912536
 steps          | wood            |  27718.70732529438
 footway        | pebblestone     | 27086.038590069602
 pedestrian     | paved           |   25796.2821378864
 pedestrian     | sett            |  21068.34850090691
 service        | sett            | 20482.838202198465
 primary        | sett            | 19967.737057226394
 steps          | metal           | 19773.230676550178
 tertiary       | sett            | 16938.037925324443
 footway        | metal           | 16379.268962368356
 footway        | tartan          | 15837.531396923105
 path           | concrete:plates | 15474.798126775942
 footway        | granite         | 11383.379541688555
 footway        | concrete:lanes  | 10030.493910883322
 steps          | paved           |  8390.516606318915
 path           | metal           |  6467.808313410286
 steps          | ground          |  5155.972318399469
 steps          | granite         |  2805.165110482995
 steps          | concrete:plates |  1994.286180839544
(199 rows)

Time: 40495,975 ms (00:40,496)

Вывод

Беглый анализ данных показал, что только 26% от дорожной сети в OSM в России имеет информацию о типе дорожного покрытия(2025814 из 7808564 объектов ways). Если каждый житель родины у кого есть смартфон пометит тип покрытия и их качество на ближайших дорогах в проекте OpenStreetMap, то анализ дорожной сети на основе открытых данных станет проще и ваш оффлайн навигатор не поведет вас маршрутом по дороге с плохим состоянием дорожного полотна и машина с автопилотом не развалится на ухабах!

Известная нам длина всего по чему можно перемещаться , что можно назвать "дорогой" в данных OpenStreetMap о России составляет 4 265 048 км. На первом месте по суммарной протяженности "Дороги сельскохозяйственного назначения, лесотехнические и лесозаготовительные дороги, не ведущие к жилым или промышленным объектам, стихийно возникшие проезды." 1 658 443км (38.88% от общей протяженности), а на втором "улиц и переулков, которые проходят вокруг и между жилых зон" 587 152 км, на третьем месте "улицы и дороги, имеющие самый низкий статус в дорожной сети" 545 354км.

Комментарии (20)


  1. pfg21
    00.00.0000 00:00

    можно попросить добавить еще разделение на длину track и всех остальных видов дорог

    ну и убрать из дорог длину объектов, не относящихся к дорогам, к примеру, highway=bus_stop и подобные :)


    1. dravor
      00.00.0000 00:00

      OSM никогда не славилась точностью и полнотой, в особенности много ошибок попадалось именно в дорожной сети.


      1. igor_suhorukov Автор
        00.00.0000 00:00
        +1

        А можете привести доказательства? Я знаю как минимум 3 области в мире где данные OpenStreetMap лучше по качеству и полноте чем в альтернативных сервисах. И за дорожную сеть одного из островов ручаюсь!


        1. aborouhin
          00.00.0000 00:00

          По моему субъективному впечатлению (ни коим образом не претендую на его правильность, тем более в глобальном масштабе) OSM превосходит все прочие источники, кроме разве что специализированных платных карт, в местах, популярных для пешего туризма. Находится на уровне с картами Гугла (в России - Яндекса) в крупных городах и их окрестностях. Но катастрофически отстаёт в нетуристической провинции. Опять же за редкими исключениями, какой-то деревне, возможно, и повезло, что в ней проживает картограф-энтузиаст :)


          1. pfg21
            00.00.0000 00:00
            +1

            по мне так кажется наоборот :)
            в многих загородных тур.локациях осм просто рвет яндекс с гуглом как тузик грелку.
            те же кавказские горы отлично отрисованы. гулял по окрестностям архыза - у яндекса с гулом там терраинкогнита.
            а также Таганай, Белуха, Северочуйский хребет, Ергаки, Хибины с Ловоозерами и прочие места тур.интересов, чем интересовался, имеют хорошую прорисовку.
            хотя конечно и куча слабо отрисованных мест.


        1. dravor
          00.00.0000 00:00

          Мне про острова совсем не интересно, возможно там лучшие в мире OSM. Отрицательный опыт именно для данных на РФ.


          1. igor_suhorukov Автор
            00.00.0000 00:00

            У меня положительный опыт с OSM на моей малой родине в РФ


    1. igor_suhorukov Автор
      00.00.0000 00:00

      Спасибо! Добавил tags->'highway' not in ('platform','bus_stop','corridor','rest_area')


  1. Ivan22
    00.00.0000 00:00

    Может уже готовую базу выложить куда-то?


    1. igor_suhorukov Автор
      00.00.0000 00:00

      Была похожая идея. Вопрос цены траффика и стоимости поддержки актуальности данных. Postgres Professionalвозможно в рунете похоже на заинтересованую в этом компанию, как пример открытых данных для PostgreSQL, кроме их демонстрационной учебной базы авиасообщения


      1. aborouhin
        00.00.0000 00:00

        .


      1. Ivan22
        00.00.0000 00:00

        torrent ??


  1. lokks
    00.00.0000 00:00

    Добрый день! Серия постов классная)

    Вопрос: на поле tags индекса не создаётся?

    18-40 секунд как будто могут быть сильно ускорены если jsonовские операторы заюзать.


    1. igor_suhorukov Автор
      00.00.0000 00:00
      +1

      Добрый день! Нет, индекса по тегам нет. частичный индекс возможно бы помог или одна из опций моей утилиты и колоночное хранилище( даже с фулсканом). Но идея была сделать запросы в примерах 100% pgSnapshot совместимыми


    1. igor_suhorukov Автор
      00.00.0000 00:00

      Преобразование linestring::geography и вычисление ST_Length для типа данных geography увеличивает время вычислений почти в 4 раза. explain analyze рассказывает всю правду

      Как пример:
      osmworld=# select tags->'highway',sum(ST_Length(linestring)) 
      from ways where tags->'highway' is not null 
       and tags->'highway' not in ('platform','bus_stop','corridor','rest_area')
      group by 1 having count(*)>=100 order by 2 desc;
          ?column?    |        sum         
      ----------------+--------------------
       track          | 21016.329413232786
       residential    |  7246.446559649292
       unclassified   |  7093.925650913118
       service        |  6286.767233940865
       tertiary       |  4668.329094740141
       path           | 2407.5496877013657
       secondary      | 1660.2591757958864
       footway        | 1214.5346691872876
       primary        | 1020.4663783749317
       trunk          |  909.3206691425914
       living_street  |  168.2725902612249
       road           | 164.23727750160705
       construction   |    82.287785913495
       proposed       |  57.60159806162047
       motorway       |  40.85539334526912
       pedestrian     |  23.39452558351217
       cycleway       | 21.205647976403945
       bridleway      | 18.511348262166624
       trunk_link     | 17.925920708517584
       primary_link   | 16.523451447222552
       steps          | 13.766753046654827
       secondary_link | 13.391547900743518
       raceway        |  11.69684264930899
       tertiary_link  | 11.470325674073857
       motorway_link  | 0.7538347086666974
       services       | 0.5373150013461613
      (26 rows)
      
      Time: 13943,881 ms (00:13,944)
      osmworld=# select tags->'highway',sum(ST_Length(linestring::geography)) 
      osmworld-# from ways where tags->'highway' is not null 
      osmworld-#  and tags->'highway' not in ('platform','bus_stop','corridor','rest_area')
      osmworld-# group by 1 having count(*)>=100 order by 2 desc;
          ?column?    |        sum         
      ----------------+--------------------
       track          | 1658443546.8776414
       residential    |  587152341.7268281
       unclassified   |  545354890.8040886
       service        |  495729464.5068486
       tertiary       | 368264397.39168483
       path           | 182206284.23869514
       secondary      | 131110086.46780892
       footway        |  95751608.42595035
       primary        |   79216830.9029651
       trunk          |  71018537.48982106
       living_street  | 13574414.604529094
       road           | 11523156.260820344
       construction   |  6261486.030197535
       proposed       |  4289390.179882147
       motorway       | 3227661.2835875256
       pedestrian     | 1870760.8457512972
       cycleway       | 1672617.3291957055
       trunk_link     | 1463525.7298084956
       bridleway      |  1432662.491510694
       primary_link   | 1316043.3831060673
       steps          | 1114401.0351566526
       secondary_link | 1056874.1903738207
       raceway        |  939396.1632468842
       tertiary_link  |  915645.7837253496
       motorway_link  |   54267.4267808306
       services       |  41741.30065791015
      (26 rows)
      
      Time: 43784,570 ms (00:43,785)
      osmworld=# explain analyze select tags->'highway',sum(ST_Length(linestring::geography)) 
      osmworld-# from ways where tags->'highway' is not null 
      osmworld-#  and tags->'highway' not in ('platform','bus_stop','corridor','rest_area')
      osmworld-# group by 1 having count(*)>=100 order by 2 desc;
      Time: 44020,349 ms (00:44,020)
      


  1. saege5b
    00.00.0000 00:00

    Проблема оценки качества покрытия, что скоро весна и асфальт вместе со льдом "утечёт". Летом-осенью зальют.
    И по новой.
    И ещё, дорожники любят лепить лоскуты по 50-100-200 метров. Я искал как такое безобразие адекватно отобразить, не нашёл. Существующие варианты лепки отрезков плохи тем, что потом "починят" и надо опять отрезки "гонять".


  1. igor_suhorukov Автор
    00.00.0000 00:00

    Я лишь про то, что если дорога грунт, или бетон то это лучше указать вместе с качеством покрытия. Водорастворимый асфальт, как и плывущий при +30, не учесть. Такие переменные данные не являются целью проекта, как и информация о дорожном трафике. Все это описано в Вики проекта


  1. micronull
    00.00.0000 00:00
    +2

    Для удобной и быстрой отметки покрытия дорог используйте мобильное применение StreetComplite.


    1. igor_suhorukov Автор
      00.00.0000 00:00

      Спасибо, отличное ПО! Использовал его на Fuvahmulah и иногда это приложение позволяет добавить последние штрихи, там где казалось бы уже лучше карту не сделаешь, как например дополнил остров mustermannxx


    1. alnite
      00.00.0000 00:00

      Ооо! Какое классное приложение, прямо "джва года ждал" такое. Теперь будет как с пользой прогулки провести.