You've already forked pgvecto.rs
mirror of
https://github.com/tensorchord/pgvecto.rs.git
synced 2025-07-04 04:42:28 +03:00
* 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>
9 lines
109 B
Bash
Executable File
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
|