New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vineyard-solr

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vineyard-solr - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

5

lib/Solr.js

@@ -34,3 +34,3 @@ var __extends = this.__extends || function (d, b) {

});
filter.value = ids.join(', ');
filter.value = "(" + ids.join(', ') + ")";
});

@@ -41,3 +41,4 @@ },

var primary = trellis.properties[trellis.primary_key];
result.filters.push(primary.query() + ' IN (' + filter.value + ')');
data.reference = primary.query();
data.operator = 'IN';
}

@@ -44,0 +45,0 @@ };

6

lib/Solr.ts

@@ -45,3 +45,3 @@ /// <reference path="../../vineyard/vineyard.d.ts"/>

var ids = docs.map((doc)=> primary.get_sql_value(doc[trellis.primary_key]))
filter.value = ids.join(', ')
filter.value = "(" + ids.join(', ') + ")"
})

@@ -52,3 +52,5 @@ },

var primary = trellis.properties[trellis.primary_key]
result.filters.push(primary.query() + ' IN (' + filter.value + ')')
data.reference = primary.query()
data.operator = 'IN'
// result.filters.push(primary.query() + ' IN (' + filter.value + ')')
}

@@ -55,0 +57,0 @@ }

{
"name": "vineyard-solr",
"version": "0.2.0",
"version": "0.2.1",
"description": "Solr integration for Vineyard",

@@ -5,0 +5,0 @@ "main": "lib/Solr.js",

Sorry, the diff of this file is not supported yet

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