Skip to content

Commit 1814483

Browse files
committed
ci
1 parent ef4cf9a commit 1814483

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

crates/bindings/tests/ui/tables.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ error[E0277]: `&'a Alpha` cannot appear as an argument to an index filtering ope
129129
&ConnectionId
130130
&Identity
131131
&Lifecycle
132-
&RawMiscModuleExportV9
133132
&TableAccess
134133
&TableType
135134
&bool
136135
&ethnum::int::I256
136+
&ethnum::uint::U256
137137
and $N others
138138
note: required by a bound in `UniqueColumn::<Tbl, <Col as Column>::ColType, Col>::find`
139139
--> src/table.rs
@@ -156,11 +156,11 @@ error[E0277]: the trait bound `Alpha: IndexScanRangeBounds<(Alpha,), SingleBound
156156
&ConnectionId
157157
&Identity
158158
&Lifecycle
159-
&RawMiscModuleExportV9
160159
&TableAccess
161160
&TableType
162161
&bool
163162
&ethnum::int::I256
163+
&ethnum::uint::U256
164164
and $N others
165165
= note: required for `Alpha` to implement `IndexScanRangeBounds<(Alpha,), SingleBound>`
166166
note: required by a bound in `RangedIndex::<Tbl, IndexType, Idx>::filter`

crates/schema/src/def/validate/v9.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,7 @@ impl ModuleValidator<'_> {
381381
let col = &mut table.columns[cdv.col_id.idx()];
382382
// First time we have a type for it, so decode it.
383383
let mut reader = &cdv.value[..];
384-
println!("{reader:?}");
385-
let ty = WithTypespace::new(&self.typespace, &col.ty);
384+
let ty = WithTypespace::new(self.typespace, &col.ty);
386385
let field_value = match ty.deserialize(Deserializer::new(&mut reader)) {
387386
Ok(field_value) => Some(field_value),
388387
Err(decode_error) => {

0 commit comments

Comments
 (0)