Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

athena-client

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

athena-client - npm Package Compare versions

Comparing version 2.4.0 to 2.5.0

8

build/lib/client.d.ts

@@ -28,6 +28,6 @@ /// <reference types="node" />

execute<T>(query: string, callback: (err?: Error, result?: AthenaExecutionResult<T>) => void): void;
private _execute(query, csvTransform, config);
private canStartQuery();
private startQuery();
private endQuery();
private _execute;
private canStartQuery;
private startQuery;
private endQuery;
}

@@ -11,2 +11,3 @@ /// <reference types="node" />

encryptionKmsKey?: string;
workGroup?: string;
}

@@ -13,0 +14,0 @@ export declare class AthenaRequest {

@@ -24,2 +24,3 @@ "use strict";

},
WorkGroup: config.workGroup || 'primary',
};

@@ -26,0 +27,0 @@ const loopFunc = () => {

{
"name": "athena-client",
"version": "2.4.0",
"version": "2.5.0",
"description": "a nodejs simple aws athena client",

@@ -64,2 +64,2 @@ "homepage": "https://github.com/KoteiIto/node-athena",

}
}
}

@@ -91,4 +91,4 @@ [![Build Status](https://travis-ci.org/KoteiIto/node-athena.svg?branch=master)](https://travis-ci.org/KoteiIto/node-athena)

| concurrentExecMax | 5 | DEPRECATED. Use `athena.setConcurrentExecMax()` instead |
| workGroup | 'primary' | Optional. The name of the workgroup within which the query executes
#### `awsConfig` object properties

@@ -95,0 +95,0 @@ | Property | Default | Description |

@@ -167,3 +167,3 @@ import { Athena } from 'aws-sdk'

// Wait for timeout or query success
while (!isTimeout && !await this.request.checkQuery(queryId, config)) {
while (!isTimeout && !(await this.request.checkQuery(queryId, config))) {
await util.sleep(config.pollingInterval || defaultPollingInterval)

@@ -170,0 +170,0 @@ }

@@ -13,2 +13,3 @@ import { Athena, AWSError } from 'aws-sdk'

encryptionKmsKey?: string
workGroup?: string
}

@@ -34,2 +35,3 @@

QueryExecutionContext: QueryExecutionContextParam
WorkGroup: string
}

@@ -67,2 +69,3 @@

},
WorkGroup: config.workGroup || 'primary',
}

@@ -69,0 +72,0 @@ const loopFunc = () => {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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