-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: queryStream method #86
base: master
Are you sure you want to change the base?
Conversation
this.connection.query( | ||
query, | ||
{ syncParser: true, ...options, format: options.format || 'JSONCompact' }, | ||
{ syncParser: true, ...options, format: options.format ?? 'JSONCompact' }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если не передать параметры format будет читаться у undefined. Исправить + написать тест для этого кейса
options?: QueryOptions, | ||
cb?: (err: any, result: any) => void | ||
): QueryStream { | ||
return this.connection.query(query, { ...options, format: options.format ?? 'JSONCompact' }, cb) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
тут так же
|
||
constructor(options: ClickhouseOptions) { | ||
this.connection = new ClickHouse(merge({}, ClickhouseClient.defaultOpts, options)) | ||
this.connection = new ClickHouse(options) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.connection = new ClickHouse(options) | |
this.connection = new ClickHouse(this.options) |
?
@apla/clickhouse
native stream feature