fixed EXISTS
This commit is contained in:
parent
a94bdc6ca2
commit
879640f4c5
2 changed files with 4 additions and 2 deletions
|
@ -139,9 +139,9 @@ sub NEXTKEY {
|
|||
|
||||
sub EXISTS {
|
||||
my ($self, $key) = @_;
|
||||
$self->[1]->kv_fetch($key);
|
||||
$self->[1]->kv_fetch($key) and return 1;
|
||||
my $errstr = $self->[1]->errstr;
|
||||
return $errstr eq 'UNQLITE_NOTFOUND' ? 1 : 0;
|
||||
return $errstr && $errstr eq 'UNQLITE_OK' ? 1 : 0;
|
||||
}
|
||||
|
||||
sub CLEAR {
|
||||
|
|
|
@ -31,6 +31,8 @@ my $tmp = tempdir( CLEANUP => 1 );
|
|||
$hash{delete} = 'delete';
|
||||
is(delete $hash{delete}, 'delete');
|
||||
is(delete $hash{delete}, undef);
|
||||
ok(exists $hash{foo});
|
||||
ok(!exists $hash{delete});
|
||||
|
||||
is(join(" ", sort keys %hash), "foo yay");
|
||||
is(join(" ", sort values %hash), "baz yappo");
|
||||
|
|
Loading…
Add table
Reference in a new issue