Skip to content

Conversation

pajgo
Copy link

@pajgo pajgo commented Sep 4, 2020

  • allows to use @apla/clickhouse native stream feature

@pajgo pajgo requested a review from TorinAsakura September 4, 2020 11:23
@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.

3 participants