Skip to content

Commit

Permalink
fix(wasm): add missing TIMESTAMPTZOID type oid
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Dec 2, 2024
1 parent 29b5c8d commit 85f1a4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wrappers/src/fdw/wasm_fdw/host/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,9 @@ impl HostColumn for FdwHost {
pg_sys::TEXTOID => TypeOid::String,
pg_sys::DATEOID => TypeOid::Date,
pg_sys::TIMESTAMPOID => TypeOid::Timestamp,
pg_sys::TIMESTAMPTZOID => TypeOid::Timestamptz,
pg_sys::JSONBOID => TypeOid::Json,
_ => unimplemented!(),
_ => unimplemented!("column type oid not supported"),
}
}

Expand Down

0 comments on commit 85f1a4f

Please sign in to comment.