Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(wasm): add missing TIMESTAMPTZOID type oid #374

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(wasm): add missing TIMESTAMPTZOID type oid
  • Loading branch information
burmecia committed Dec 2, 2024
commit 85f1a4f42ef6edbda6e1d83c0f332217e3c49d65
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
Loading