Skip to content

Commit 1dbd2c8

Browse files
committed
0.0.28
1 parent 40bff2b commit 1dbd2c8

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

debug.mts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { Cluster, Uuid } from ".";
2+
3+
const cluster = new Cluster({
4+
nodes: ["127.0.0.1:9042"],
5+
});
6+
7+
const session = await cluster.connect("system_schema");
8+
9+
const result = await session
10+
.execute("SELECT * FROM scylla_tables limit ?", [2147483648])
11+
.catch((err) => console.error(err));
12+
13+
console.log(result);

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-darwin-arm64",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"os": [
55
"darwin"
66
],

npm/darwin-universal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-darwin-universal",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"os": [
55
"darwin"
66
],

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-darwin-x64",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"os": [
55
"darwin"
66
],

npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-linux-x64-gnu",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"os": [
55
"linux"
66
],

npm/win32-x64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-win32-x64-msvc",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"os": [
55
"win32"
66
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb",
3-
"version": "0.0.27",
3+
"version": "0.0.28",
44
"repository": "https://github.com/Daniel-Boll/scylla-javascript-driver",
55
"description": "🚀 JavaScript driver for ScyllaDB, harnessing Rust's power through napi-rs for top performance. Pre-release stage. 🧪🔧",
66
"author": {

0 commit comments

Comments
 (0)