Skip to content

Commit ec61e35

Browse files
committed
fix[cuda]: dbp
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 48742f1 commit ec61e35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vortex-dtype/src/decimal/types.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ impl TryFrom<PType> for DecimalType {
234234
fn try_from(value: PType) -> Result<Self, Self::Error> {
235235
Ok(match value {
236236
PType::I8 => DecimalType::I8,
237-
PType::I16 => DecimalType::I8,
238-
PType::I32 => DecimalType::I8,
239-
PType::I64 => DecimalType::I8,
237+
PType::I16 => DecimalType::I16,
238+
PType::I32 => DecimalType::I32,
239+
PType::I64 => DecimalType::I64,
240240
p @ (PType::U8
241241
| PType::U16
242242
| PType::U32

0 commit comments

Comments
 (0)