Socket
Socket
Sign inDemoInstall

helenus

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helenus - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

7

History.md

@@ -160,2 +160,7 @@

* Added tests for Composite Removal [ @calvinfo #60 ]
* Fix and Test for Counter Columns not returning Numbers in CQL [ @calvinfo #62 ]
* Fix and Test for Counter Columns not returning Numbers in CQL [ @calvinfo #62 ]
0.5.6 / 2012-08-03
==================
* Fixed issue with serializatoin of start / end in range queries [ @devdazed ]

15

lib/column_family.js

@@ -142,3 +142,4 @@ var util = require('util'),

function getSlicePredicate(options, serializer){
var predicate = new ttype.SlicePredicate();
var predicate = new ttype.SlicePredicate(),
start = '', end = '';

@@ -152,5 +153,13 @@ if(Array.isArray(options.columns)){

} else {
if(options.start){
start = serializer.serialize(options.start);
}
if(options.end){
end = serializer.serialize(options.end);
}
predicate.slice_range = new ttype.SliceRange({
start:options.start,
finish:options.end,
start:start,
finish:end,
reversed:options.reversed,

@@ -157,0 +166,0 @@ count:options.max

{
"name": "helenus"
, "version": "0.5.5"
, "version": "0.5.6"
, "description": "NodeJS Bindings for Cassandra"

@@ -5,0 +5,0 @@ , "keywords": ["cassandra"]

@@ -163,3 +163,3 @@ # Helenus

results.foreach(function(row){
results.forEach(function(row){
//all row of result

@@ -166,0 +166,0 @@ row.forEach(function(name,value,ts,ttl){

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc