We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 933b3a2 commit 1aa0f1cCopy full SHA for 1aa0f1c
1 file changed
libs/@local/graph/postgres-store/src/store/postgres/query/expression/conditional.rs
@@ -812,10 +812,8 @@ mod tests {
812
#[test]
813
fn transpile_u128_constant() {
814
assert_eq!(
815
- Expression::Constant(Constant::U128(
816
- 340_282_366_920_938_463_463_374_607_431_768_211_455
817
- ))
818
- .transpile_to_string(),
+ Expression::Constant(Constant::U128(0xFFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF))
+ .transpile_to_string(),
819
"340282366920938463463374607431768211455"
820
);
821
}
0 commit comments