mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
13 lines
240 B
Bash
13 lines
240 B
Bash
#! /bin/sh
|
|
|
|
DB=compression_benchmark
|
|
|
|
createdb $DB
|
|
|
|
psql -d $DB -f pointcloud.sql > /dev/null 2>&1
|
|
psql -d $DB -f pointcloud-laz.sql > /dev/null 2>&1
|
|
psql -d $DB -f pointcloud-dim.sql > /dev/null 2>&1
|
|
psql -d $DB -f getsize.sql
|
|
|
|
dropdb $DB
|