2024-08-06 00:02:20 +02:00
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2024-08-07 10:23:38 +02:00
|
|
|
|
|
|
|
echo "counts how many events we've seen in total"
|
|
|
|
|
2024-08-06 00:02:20 +02:00
|
|
|
./docker-exec.sh exec presto presto-cli --server localhost:8080 --execute 'select count(*) from iceberg.demo_db.demo_table;'
|