Skip to content

Commit

Permalink
chore(cdc): update sea-schema version to 0.15 (#18521)
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang authored Sep 20, 2024
1 parent 2b8f6a6 commit 98a2d41
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 10 deletions.
61 changes: 52 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ rustls-native-certs = "0.7"
rustls-pemfile = "2"
rustls-pki-types = "1"
rw_futures_util = { workspace = true }
sea-schema = { version = "0.14", default-features = false, features = [
sea-schema = { version = "0.15", default-features = false, features = [
"discovery",
"sqlx-postgres",
"sqlx-mysql",
Expand Down
3 changes: 3 additions & 0 deletions src/connector/src/source/cdc/external/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@ fn type_to_rw_type(col_type: &ColumnType) -> ConnectorResult<DataType> {
ColumnType::Bit(_) => {
return Err(anyhow!("BIT type not supported").into());
}
ColumnType::VarBit(_) => {
return Err(anyhow!("VARBIT type not supported").into());
}
ColumnType::TsVector => {
return Err(anyhow!("TSVECTOR type not supported").into());
}
Expand Down

0 comments on commit 98a2d41

Please sign in to comment.