Skip to content

Commit 274e0c1

Browse files
authored
Fixed bug with null arguments in SET command (#1470)
1 parent c27dafa commit 274e0c1

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/Command/Redis/SET.php

+6
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,10 @@ public function getId()
2626
{
2727
return 'SET';
2828
}
29+
30+
public function setArguments(array $arguments)
31+
{
32+
parent::setArguments($arguments);
33+
$this->filterArguments();
34+
}
2935
}

tests/Predis/Command/Redis/SET_Test.php

+13
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,19 @@ public function testSetStringValueWithModifierXX(): void
175175
$this->assertNull($redis->set('foofoo', 'barbar', 'XX'));
176176
}
177177

178+
/**
179+
* @group connected
180+
* @requiresRedisVersion >= 2.6.12
181+
*/
182+
public function testSetStringDoesNotFailWithExplicitlySetNullArguments(): void
183+
{
184+
$redis = $this->getClient();
185+
186+
$this->assertEquals(
187+
'OK', $redis->set('foo', 'barbar', null, null, null)
188+
);
189+
}
190+
178191
/**
179192
* @group connected
180193
* @group cluster

0 commit comments

Comments
 (0)