From c9f1cbbb07d17de7304490624c68c41415927d14 Mon Sep 17 00:00:00 2001 From: Rohan Date: Mon, 29 Jul 2019 15:16:08 -0700 Subject: [PATCH] fix: dummy placeholder class in ksql-execution (#3142) --- .../expression/tree/Placeholder.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ksql-execution/src/main/java/io/confluent/ksql/execution/expression/tree/Placeholder.java diff --git a/ksql-execution/src/main/java/io/confluent/ksql/execution/expression/tree/Placeholder.java b/ksql-execution/src/main/java/io/confluent/ksql/execution/expression/tree/Placeholder.java new file mode 100644 index 000000000000..71a9b1c02f79 --- /dev/null +++ b/ksql-execution/src/main/java/io/confluent/ksql/execution/expression/tree/Placeholder.java @@ -0,0 +1,20 @@ +/* + * Copyright 2018 Confluent Inc. + * + * Licensed under the Confluent Community License (the "License"); you may not use + * this file except in compliance with the License. You may obtain a copy of the + * License at + * + * http://www.confluent.io/confluent-community-license + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + */ + +package io.confluent.ksql.execution.expression.tree; + +class Placeholder { + +}