Skip to content
ClickHouse Docs
ClickHouse DocsClickHouse Docs

system.licenses

説明

ClickHouse のソース内にある contrib ディレクトリに含まれるサードパーティーライブラリのライセンスです。

カラム

  • library_name (文字列) — ライブラリ名。
  • license_type (文字列) — ライセンスの種類 — 例: Apache、MIT。
  • license_path (文字列) — ライセンス文が記載されたファイルのパス。
  • license_text (文字列) — ライセンス文。

SELECT library_name, license_type, license_path FROM system.licenses LIMIT 15
┌─library_name───────┬─license_type─┬─license_path────────────────────────┐
│ aws-c-common       │ Apache       │ /contrib/aws-c-common/LICENSE       │
│ boost              │ Boost        │ /contrib/boost/LICENSE_1_0.txt      │
│ brotli             │ MIT          │ /contrib/brotli/LICENSE             │
│ [...]              │ [...]        │ [...]                               │
└────────────────────┴──────────────┴─────────────────────────────────────┘
Navigation