From 7b75d883c30a6dc28d5b6a63d52cbb6bdcfa8f6b Mon Sep 17 00:00:00 2001 From: CAJan93 Date: Mon, 15 Jul 2024 17:59:11 +0200 Subject: [PATCH] map --- proto/catalog.proto | 6 +++--- proto/common.proto | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/proto/catalog.proto b/proto/catalog.proto index 391d252885bfa..b8df88e8df0a4 100644 --- a/proto/catalog.proto +++ b/proto/catalog.proto @@ -417,9 +417,9 @@ message Table { // } // but {"some":"thing"} can not be scheduled on that node. // A materialized view or sink or table with an empty node_labels map can only be scheduled on nodes with - // empty/null node_labels map. - // A node with an empty/null node_labels map can only host streaming jobs with an empty node_labels map. - optional map node_labels = 101; + // empty node_labels map. + // A node with an empty node_labels map can only host streaming jobs with an empty node_labels map. + map node_labels = 101; // If this is a materialized view: True if backfill is done, else false. // If this is a regular table: Always true. diff --git a/proto/common.proto b/proto/common.proto index 123d863fd5dad..5200d94aa6949 100644 --- a/proto/common.proto +++ b/proto/common.proto @@ -87,8 +87,8 @@ message WorkerNode { // "some":"value" // } // but {"some":"thing"} can not be scheduled on that node. - // Worker nodes with an empty or null node_labels map MVs with an empty or null node_label map. - optional map node_labels = 10; + // Worker nodes with an empty node_labels map MVs with an empty or null node_label map. + map node_labels = 10; } message Buffer {