File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -86,15 +86,13 @@ def value_change(self) -> ibis.StringValue:
8686 )
8787 before_is_null = self .before .isnull ()
8888 after_is_null = self .after .isnull ()
89- return (
90- ibis .cases (
91- (before_is_null & after_is_null , "remained_null" ),
92- (~ before_is_null & after_is_null , "became_null" ),
93- (before_is_null & ~ after_is_null , "became_nonnull" ),
94- (identical_to (self ), "unchanged" ),
95- else_ = "changed" ,
96- ),
97- )
89+ return ibis .cases (
90+ (before_is_null & after_is_null , "remained_null" ),
91+ (~ before_is_null & after_is_null , "became_null" ),
92+ (before_is_null & ~ after_is_null , "became_nonnull" ),
93+ (identical_to (self ), "unchanged" ),
94+ else_ = "changed" ,
95+ ).name ("value_change" )
9896
9997
10098class Updates (TableWrapper ):
You can’t perform that action at this time.
0 commit comments