Skip to content

Commit af2920c

Browse files
Enable multithreading to increase performance for var-length attributes (#37)
* Working with map * Add build typescript script * Remove comments * Update version in package.json * Fix types * Create concatChars & range helpers * Fix tests closes [ch14564] * Remove username/password from the configuration type since its not supported * Refactor getResultsFromArrayBuffer to always group var-length attributes
1 parent 4d26454 commit af2920c

39 files changed

+369
-6832
lines changed

lib/TileDBClient/TileDBClient.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ declare class TileDBClient {
1414
udf: UDF;
1515
sql: Sql;
1616
query: TileDBQuery;
17-
constructor(params?: ConfigurationParameters);
17+
constructor(params?: Omit<ConfigurationParameters, "username" | "password">);
1818
info(namespace: string, array: string, options?: any): Promise<import("axios").AxiosResponse<import("../v1").ArrayInfo>>;
1919
arrayActivity(namespace: string, array: string, start?: number, end?: number, eventTypes?: string, taskId?: string, hasTaskId?: boolean, options?: any): Promise<import("axios").AxiosResponse<import("../v1").ArrayActivityLog[]>>;
2020
deregisterArray(namespace: string, array: string, options?: any): Promise<import("axios").AxiosResponse<void>>;

lib/TileDBClient/TileDBClient.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/TileDBQuery/TileDBQuery.js

Lines changed: 20 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)