From 24b5b4286c2e38e19597b91bdb2ec93c262c47fd Mon Sep 17 00:00:00 2001 From: tfx-team Date: Tue, 21 May 2024 16:43:14 -0700 Subject: [PATCH] Automated rollback of commit 898c909d86acb53e4d81131a23e67412eb04783e PiperOrigin-RevId: 635968220 --- tfx/proto/orchestration/pipeline.proto | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/tfx/proto/orchestration/pipeline.proto b/tfx/proto/orchestration/pipeline.proto index 587a4e06d9b..7986a1ee904 100644 --- a/tfx/proto/orchestration/pipeline.proto +++ b/tfx/proto/orchestration/pipeline.proto @@ -186,24 +186,13 @@ message PropertyPredicate { PropertyPredicate rhs = 3; } - // Logical operator on multiple elements. - // Only "AND" is supported for multi-element operator. - message MultiLogicalOperator { - enum LogicalOp { - OP_UNSPECIFIED = 0; - AND = 1; - } - LogicalOp op = 1; - - repeated PropertyPredicate predicates = 4; - } - oneof operator { ValueComparator value_comparator = 1; UnaryLogicalOperator unary_logical_operator = 2; BinaryLogicalOperator binary_logical_operator = 3; - MultiLogicalOperator multi_logical_operator = 4; } + + reserved 4; } // InputGraph expresses a declarative input resolution logic with a graph of