diff options
author | edef <edef@edef.eu> | 2023-11-06T20·04+0000 |
---|---|---|
committer | edef <edef@edef.eu> | 2023-11-06T21·46+0000 |
commit | 14849829fd4a2906d5cd2f723226b02801897983 (patch) | |
tree | 9e1056487bae7e5cb5a74fe5c218d81f0b96039b /third_party/overlays/tvl.nix | |
parent | edea6dadddbc8d8484d5790dd3aed787630b8258 (diff) |
feat(third_party/overlays): support LargeListArray in Clickhouse r/6970
Link: https://github.com/ClickHouse/ClickHouse/pull/56118 Change-Id: I41339ce662b8a169746237eb1d0aad34453bc0a8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9986 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
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 + ]; + }); } |