1
0
mirror of https://github.com/tensorchord/pgvecto.rs.git synced 2025-07-04 04:42:28 +03:00
Files
pgvecto.rs/tests/tests.sh
Usamoi 727d69feab feat: transactional CREATE/DROP (#279)
* feat: transactional CREATE/DROP

Signed-off-by: usamoi <usamoi@outlook.com>

* test: transaction ddl

Signed-off-by: usamoi <usamoi@outlook.com>

---------

Signed-off-by: usamoi <usamoi@outlook.com>
2024-01-17 11:47:02 +00:00

9 lines
109 B
Bash
Executable File

#!/usr/bin/env bash
set -e
psql -f $(dirname $0)/init.sql
for x in $(dirname $0)/*/test.sh; do
$x
done