From f0064fe6d0944b289f4829f2ba8da2abbe24cd67 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Fri, 15 Sep 2023 12:02:23 +0800 Subject: [PATCH] fix --- proto/catalog.proto | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/proto/catalog.proto b/proto/catalog.proto index 9eda8681c97fe..2f49b307f1b79 100644 --- a/proto/catalog.proto +++ b/proto/catalog.proto @@ -192,9 +192,10 @@ message Table { } enum TableStatus { - UNSPECIFIED = 0; - CREATING = 0; - CREATED = 1; + // Prefixed by `TABLE_STATUS` due to protobuf namespacing rules. + TABLE_STATUS_UNSPECIFIED = 0; + CREATING = 1; + CREATED = 2; } message TableVersion {