Skip to content

Commit ac02a6b

Browse files
committed
Remove clang-format, copy-edit CHANGELOG
1 parent 69c6a7e commit ac02a6b

4 files changed

Lines changed: 9 additions & 307 deletions

File tree

.clang-format

Lines changed: 0 additions & 295 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
steps:
1616
- name: Install Postgres
1717
run: NO_CLUSTER=1 pg-start ${{ env.pg }} libcurl4-openssl-dev uuid-dev liblz4-dev libzstd-dev clang-tidy
18-
- name: Install clang-format # version in Ubuntu is too old
19-
run: curl -sLo /usr/local/bin/clang-format https://github.com/cpp-linter/clang-tools-static-binaries/releases/latest/download/clang-format-22_linux-amd64 && chmod +x /usr/local/bin/clang-format
2018
- name: Checkout the Repository
2119
uses: actions/checkout@v6
2220
- name: Install pre-commit

CHANGELOG.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ All notable changes to this project will be documented in this file. It uses the
1111

1212
### ⚡ Improvements
1313

14-
* Replaced the `clickhouse-cpp` binary client with
15-
[ClickHouse/clickhouse-c], pulled in as a git submodule and included in
16-
the release package under `vendor/clickhouse-c`. This change eliminates
17-
conflicts between C++ memory & exception handling and Postgres memory and
18-
exception handling and streams query results by the ClickHouse block for
19-
reduced memory consumption. It also greatly reduces build time and the
20-
size of the library by over 75%. Thanks to Philip Dubé for the the new
21-
library and the PR ([#254]).
14+
* Replaced the `clickhouse-cpp` binary client with [ClickHouse/clickhouse-c],
15+
pulled in as a git submodule and included in the release package under
16+
`vendor/clickhouse-c`. This change eliminates conflicts between the C++
17+
and Postgres memory & exception handling and streams query results by the
18+
ClickHouse block for reduced memory consumption. It also greatly reduces
19+
build time and the size of the library by over 75%. Thanks to Philip Dubé
20+
for the the new library and the PR ([#254]).
2221
* Added multidimensional array support across SELECT and INSERT to both the
2322
binary and http drivers. Rectangular ClickHouse `Array(Array(...))` values
2423
now map to PostgreSQL multidimensional arrays, jagged arrays not supported,

src/binary/binary_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* binary_internal.h
33
*
4-
* Cross-file shared state for the binary driver subdir.Not exposed
5-
* via src/include, anything outside src/binary should use binary.h.
4+
* Cross-file shared state for the binary driver subdir. Not exposed via
5+
* src/include, anything outside src/binary should use binary.h.
66
*/
77

88
#ifndef PG_CLICKHOUSE_BINARY_INTERNAL_H

0 commit comments

Comments
 (0)