We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bccf85d commit 2f7aae8Copy full SHA for 2f7aae8
.github/workflows/check.yml
@@ -196,3 +196,8 @@ jobs:
196
- name: Fuzz
197
run: |
198
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
@@ -50,7 +50,7 @@ fn test(client: &mut postgres::Client) {
50
CREATE TABLE documents (
51
id SERIAL PRIMARY KEY,
52
embedding bm25vector
53
- );
+ ) WITH (autovaccum_enabled = off);
54
"#,
55
&[],
56
)
0 commit comments