tolitius / cbass

adding "simple" to HBase
Eclipse Public License 1.0
24 stars 11 forks source link

Add a function `lazy-scan` that fixed the behaviour of `scan` when it should return a lazy sequence #20

Closed viebel closed 3 years ago

viebel commented 3 years ago

This PR adds a new function for scanning lazilly a table.

Passing lazy? to scan is buggy as the scanner and the table are closed before the lazy sequence is realized.

tolitius commented 3 years ago

great, thanks for the pr!

tolitius commented 3 years ago

you missed ResultScanner import it's fixed and released in 0.2.7

viebel commented 3 years ago

Thank you @tolitius !