ECC/docs/ko-KR/skills
28winz-bot ee2663d5b2
fix(clickhouse-io): use official @clickhouse/client instead of unmaintained clickhouse package (#2422)
* fix(clickhouse-io): use official @clickhouse/client instead of unmaintained clickhouse package

The example imported the third-party `clickhouse` (TimonKK) package and used
its API (new ClickHouse, .query().toPromise(), .insert().stream()). Migrate to
the official @clickhouse/client: createClient() and structured
clickhouse.insert({ table, values, format }). The structured values array also
removes the previous SQL string-interpolation anti-pattern.

Applies to the source skill and the ja-JP, zh-CN, zh-TW, ko-KR translated
copies (translated code comments preserved).

Refs: https://clickhouse.com/docs/integrations/javascript

* fix(clickhouse-io): migrate remaining insert calls to @clickhouse/client

Address review feedback: the earlier commit missed two spots that still used
the legacy clickhouse API.

- CDC example: clickhouse.insert('market_updates', [...]) ->
  clickhouse.insert({ table, values, format: 'JSONEachRow' })
- Single-row insertTrade: map the row to the column shape (same as the bulk
  path) instead of passing the raw trade object.

Applies to the source skill and the ja-JP, zh-CN, zh-TW, ko-KR copies.
2026-07-03 20:36:46 -07:00
..
backend-patterns fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
clickhouse-io fix(clickhouse-io): use official @clickhouse/client instead of unmaintained clickhouse package (#2422) 2026-07-03 20:36:46 -07:00
coding-standards fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
continuous-learning docs: address Korean translation review feedback 2026-03-13 00:17:54 -07:00
continuous-learning-v2 docs: fix plugin quick start for continuous learning v2 (#1546) 2026-04-21 18:41:36 -04:00
eval-harness docs(ko-KR): add Korean translation for skills 2026-03-10 13:29:00 +09:00
frontend-patterns fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
golang-patterns docs: address Korean translation review feedback 2026-03-13 00:17:54 -07:00
golang-testing docs(ko-KR): add Korean translation for skills 2026-03-10 13:29:00 +09:00
iterative-retrieval fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
postgres-patterns docs(ko-KR): add Korean translation for skills 2026-03-10 13:29:00 +09:00
security-review fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
strategic-compact docs: address Korean translation review feedback 2026-03-13 00:17:54 -07:00
tdd-workflow docs: address Korean translation review feedback 2026-03-13 00:17:54 -07:00
verification-loop docs: address Korean translation review feedback 2026-03-13 00:17:54 -07:00