diff options
Diffstat (limited to 'third_party/overlays/tvl.nix')
-rw-r--r-- | third_party/overlays/tvl.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index de4788a29b16..600161b66143 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -147,4 +147,11 @@ depot.nix.readTree.drvTargets { license = licenses.asl20; }; }; + + clickhouse = super.clickhouse.overrideAttrs (old: { + patches = old.patches or [ ] ++ [ + # https://github.com/ClickHouse/ClickHouse/pull/56118 + ./patches/clickhouse-support-reading-arrow-LargeListArray.patch + ]; + }); } |