diff options
author | Hans Bolinder <[email protected]> | 2010-10-21 08:54:42 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2010-10-21 08:54:42 +0200 |
commit | ce97ee6c7747fa5211257957688082e97d69d57f (patch) | |
tree | e33f9ca9ae024e59be80af06a450a99c7b8177cc /lib/stdlib/src | |
parent | 4921e5546bfeedc22ae7109e169a08bc4cc01739 (diff) | |
parent | d98b14f2c2c808491e1a5942820cddaab4d65742 (diff) | |
download | otp-ce97ee6c7747fa5211257957688082e97d69d57f.tar.gz otp-ce97ee6c7747fa5211257957688082e97d69d57f.tar.bz2 otp-ce97ee6c7747fa5211257957688082e97d69d57f.zip |
Merge branch 'hb/stdlib/dets_insert_new/OTP-8856' into dev
* hb/stdlib/dets_insert_new/OTP-8856:
Fix a bug in dets:insert_new()
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/dets.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/stdlib/src/dets.erl b/lib/stdlib/src/dets.erl index 4584b8184f..cc1f35914a 100644 --- a/lib/stdlib/src/dets.erl +++ b/lib/stdlib/src/dets.erl @@ -1381,9 +1381,6 @@ stream_op(Head, Pids, C, N, Pid, {lookup_keys,Keys}, Fxd) -> stream_op(Head, Pids, C, N, Pid, {insert, _Objects} = Op, Fxd) -> NC = [Op | C], stream_loop(Head, [Pid | Pids], NC, N, Fxd); -stream_op(Head, Pids, C, N, Pid, {insert_new, _Objects} = Op, Fxd) -> - NC = [Op | C], - stream_loop(Head, [Pid | Pids], NC, N, Fxd); stream_op(Head, Pids, C, N, Pid, {delete_key, _Keys} = Op, Fxd) -> NC = [Op | C], stream_loop(Head, [Pid | Pids], NC, N, Fxd); |