chore: remove iceberg read (#8858)

Signed-off-by: shuiyisong <xixing.sys@gmail.com>
This commit is contained in:
shuiyisong
2026-08-12 08:15:12 +00:00
committed by GitHub
parent 6493435bee
commit 6249623cfb
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -31,8 +31,8 @@ pub use common::{
};
pub use permission::{
ALL_ACTIONS, AccessMode, DASHBOARD_DELETE, DASHBOARD_QUERY, DASHBOARD_SAVE,
DefaultPermissionChecker, ICEBERG_READ, INFLUXDB_WRITE, JAEGER_QUERY, LOG_QUERY, LOG_WRITE,
OPENTSDB_WRITE, OTLP_WRITE, PIPELINE_DELETE, PIPELINE_INSERT, PIPELINE_QUERY, PROM_STORE_READ,
DefaultPermissionChecker, INFLUXDB_WRITE, JAEGER_QUERY, LOG_QUERY, LOG_WRITE, OPENTSDB_WRITE,
OTLP_WRITE, PIPELINE_DELETE, PIPELINE_INSERT, PIPELINE_QUERY, PROM_STORE_READ,
PROM_STORE_WRITE, PROMQL_QUERY, PermissionAction, PermissionChecker, PermissionReq,
PermissionResp, PermissionTableTarget, PermissionTableTargets, SEMANTIC_GRAPH_QUERY,
};
-2
View File
@@ -139,7 +139,6 @@ pub const PROMQL_QUERY: PermissionAction = PermissionAction::read("promql.query"
pub const LOG_QUERY: PermissionAction = PermissionAction::read("log.query");
pub const OPENTSDB_WRITE: PermissionAction = PermissionAction::write("opentsdb.write");
pub const INFLUXDB_WRITE: PermissionAction = PermissionAction::write("influxdb.write");
pub const ICEBERG_READ: PermissionAction = PermissionAction::read("iceberg.read");
pub const PROM_STORE_WRITE: PermissionAction = PermissionAction::write("prom_store.write");
pub const PROM_STORE_READ: PermissionAction = PermissionAction::read("prom_store.read");
pub const OTLP_WRITE: PermissionAction = PermissionAction::write("otlp.write");
@@ -165,7 +164,6 @@ pub const ALL_ACTIONS: &[PermissionAction] = &[
LOG_QUERY,
OPENTSDB_WRITE,
INFLUXDB_WRITE,
ICEBERG_READ,
PROM_STORE_WRITE,
PROM_STORE_READ,
OTLP_WRITE,