@@ -70,7 +70,7 @@ static class CounterAssignment extends Assignment {
7070 void appendTo (StringBuilder sb , List <ByteBuffer > variables ) {
7171 appendName (name , sb ).append ("=" );
7272 appendName (name , sb ).append (isIncr ? "+" : "-" );
73- appendValue (value , sb );
73+ appendValue (value , sb , variables );
7474 }
7575
7676 @ Override
@@ -91,7 +91,7 @@ static class ListPrependAssignment extends Assignment {
9191 @ Override
9292 void appendTo (StringBuilder sb , List <ByteBuffer > variables ) {
9393 appendName (name , sb ).append ("=" );
94- appendValue (value , sb );
94+ appendValue (value , sb , variables );
9595 sb .append ("+" );
9696 appendName (name , sb );
9797 }
@@ -140,7 +140,7 @@ static class CollectionAssignment extends Assignment {
140140 void appendTo (StringBuilder sb , List <ByteBuffer > variables ) {
141141 appendName (name , sb ).append ("=" );
142142 appendName (name , sb ).append (isAdd ? "+" : "-" );
143- appendValue (collection , sb );
143+ appendValue (collection , sb , variables );
144144 }
145145
146146 @ Override
0 commit comments