You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2019/07/22 12:47:44 UTC

[flink] 01/02: [FLINK-13266][table-runtime-blink] remove Order class from table-runtime-blink

This is an automated email from the ASF dual-hosted git repository.

twalthr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 768731d2707bf40fefba5481ed20f9c3c3ea1673
Author: godfreyhe <go...@163.com>
AuthorDate: Thu Jul 18 15:11:28 2019 +0800

    [FLINK-13266][table-runtime-blink] remove Order class from table-runtime-blink
---
 .../org/apache/flink/table/api/dataview/Order.java | 38 ----------------------
 1 file changed, 38 deletions(-)

diff --git a/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/api/dataview/Order.java b/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/api/dataview/Order.java
deleted file mode 100644
index ad46e38..0000000
--- a/flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/api/dataview/Order.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.flink.table.api.dataview;
-
-/**
- * Enumeration representing order.
- */
-public enum Order {
-	ASCENDING("ASC"),
-
-	DESCENDING("DESC");
-
-	public final String shortString;
-
-	Order(String shortString) {
-		this.shortString = shortString;
-	}
-
-	public String toString() {
-		return shortString;
-	}
-}