Skip to content

Commit cc1438b

Browse files
authored
Merge pull request #6462 from petrosagg/update-pg
incorporate code review fixes from rust-postgres
2 parents 36a23fa + 3b485d9 commit cc1438b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/dataflow/src/source/postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ impl PostgresSourceReader {
169169
{
170170
let datum = match val {
171171
TupleData::Null => Datum::Null,
172-
TupleData::Toast => bail!("Unsupported TOAST value"),
172+
TupleData::UnchangedToast => bail!("Unsupported TOAST value"),
173173
TupleData::Text(b) => {
174174
let txt_datum: Datum = std::str::from_utf8(&b)?.into();
175175
cast_expr.eval(&[txt_datum], &arena)?

0 commit comments

Comments
 (0)