Skip to content

Commit 2f7aae8

Browse files
committed
?
1 parent bccf85d commit 2f7aae8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,3 +196,8 @@ jobs:
196196
- name: Fuzz
197197
run: |
198198
cargo run -p fuzz -- "user=$(whoami) dbname=$(whoami) host=localhost"
199+
200+
- name: Logging
201+
if: always()
202+
run: |
203+
cat /var/log/postgresql/postgresql-${{ matrix.version }}-main.log

crates/fuzz/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fn test(client: &mut postgres::Client) {
5050
CREATE TABLE documents (
5151
id SERIAL PRIMARY KEY,
5252
embedding bm25vector
53-
);
53+
) WITH (autovaccum_enabled = off);
5454
"#,
5555
&[],
5656
)

0 commit comments

Comments
 (0)