Skip to content
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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Conversation

pajgo
Copy link

@pajgo pajgo commented Sep 4, 2020

  • allows to use @apla/clickhouse native stream feature

@TorinAsakura TorinAsakura self-assigned this Sep 8, 2020
this.connection.query(
query,
{ syncParser: true, ...options, format: options.format || 'JSONCompact' },
{ syncParser: true, ...options, format: options.format ?? 'JSONCompact' },
Copy link
Contributor

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)
Copy link
Contributor

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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
this.connection = new ClickHouse(options)
this.connection = new ClickHouse(this.options)

?

@TorinAsakura TorinAsakura removed their assignment Aug 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants