@@ -136,7 +136,7 @@ sensitive information**. Trino error messages embed literal values from
136136the failing query (` Cannot cast '2024-foo' as DATE ` ). Trace-level logs
137137contain the query text itself, which may include identifiers or
138138literals. Treat the gateway's stdout/stderr with the same operational
139- sensitivity as Trino's own server log — restrict access, avoid
139+ sensitivity as Trino's own server log: restrict access, avoid
140140forwarding it to general-purpose log aggregators without scrubbing,
141141and review your log retention policy if your queries reference PII.
142142
@@ -176,7 +176,7 @@ forwarded:
176176
177177The PostgreSQL frontend/backend protocol supports two wire encodings for
178178column values: ** text** and ** binary** . Both are negotiated per column
179- on each query — the client tells the server which format it wants for
179+ on each query: the client tells the server which format it wants for
180180each result column, and the server obliges. Text format renders every
181181value as its canonical PostgreSQL string representation (e.g. ` 42 ` ,
182182` true ` , ` 2026-04-30 ` ); binary format uses a compact, type-specific byte
@@ -222,22 +222,22 @@ The repo has three kinds of tests, in increasing fidelity:
222222 (` tests/psql_integration_test.rs ` ).** Drive the gateway by
223223 spawning the real ` psql ` command-line client (libpq) as a
224224 subprocess. Catches client-specific issues that an embedded driver
225- wouldn't surface — startup negotiation, notice handling, the
225+ wouldn't surface: startup negotiation, notice handling, the
226226 simple-query-with-CommandComplete flow. Slower per case
227227 (subprocess overhead) so kept to a focused subset, not a full
228228 mirror of (2). Skipped automatically if ` psql ` isn't on ` PATH ` or
229229 ` TRINO_HOST ` is unset.
230230
231231``` bash
232- # Unit tests only — no Trino required.
232+ # Unit tests only, no Trino required.
233233cargo test --lib
234234
235235# All gates a PR must pass.
236236cargo clippy --all-targets -- -D warnings # lint
237237cargo fmt --check # format
238238reuse lint # license metadata
239239
240- # Read-only Trino integration (covers both client suites — tokio-postgres
240+ # Read-only Trino integration (covers both client suites; tokio-postgres
241241# tests in (2) auto-skip without TRINO_HOST; psql tests in (3) auto-skip
242242# without TRINO_HOST and without `psql` on PATH).
243243TRINO_HOST=... TRINO_PORT=... TRINO_SSL=true TRINO_TLS_NO_VERIFY=true \
0 commit comments