Skip to content

Commit 98a2d41

Browse files
authored
chore(cdc): update sea-schema version to 0.15 (#18521)
1 parent 2b8f6a6 commit 98a2d41

File tree

3 files changed

+56
-10
lines changed

3 files changed

+56
-10
lines changed

Cargo.lock

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

src/connector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ rustls-native-certs = "0.7"
128128
rustls-pemfile = "2"
129129
rustls-pki-types = "1"
130130
rw_futures_util = { workspace = true }
131-
sea-schema = { version = "0.14", default-features = false, features = [
131+
sea-schema = { version = "0.15", default-features = false, features = [
132132
"discovery",
133133
"sqlx-postgres",
134134
"sqlx-mysql",

src/connector/src/source/cdc/external/postgres.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,9 @@ fn type_to_rw_type(col_type: &ColumnType) -> ConnectorResult<DataType> {
221221
ColumnType::Bit(_) => {
222222
return Err(anyhow!("BIT type not supported").into());
223223
}
224+
ColumnType::VarBit(_) => {
225+
return Err(anyhow!("VARBIT type not supported").into());
226+
}
224227
ColumnType::TsVector => {
225228
return Err(anyhow!("TSVECTOR type not supported").into());
226229
}

0 commit comments

Comments
 (0)