aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/parser/pg_catalog/collect_used_procs.sh
blob: bea351406329e3300c55dbb34a8adb5f6ea21aae (plain) (blame)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash
set -eux
rm -rf tmp
mkdir -p tmp
yag make --build=relwithdebinfo -tA -C ut -C ../pg_wrapper/ut -C ../pg_wrapper/test -C ../../sql/pg/ut --test-env=YQL_EXPORT_PG_FUNCTIONS_DIR=$(realpath ./tmp)
cat tmp/* | sort | uniq > used_procs.h
rm -rf tmp