forked from apache/paimon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[core] Delete useless methods in Catalog (apache#4468)
- Loading branch information
1 parent
c65ff11
commit c9ecf27
Showing
19 changed files
with
288 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
paimon-core/src/main/java/org/apache/paimon/catalog/Database.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* 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.paimon.catalog; | ||
|
||
import org.apache.paimon.annotation.Public; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
|
||
/** | ||
* Interface of a database in a catalog. | ||
* | ||
* @since 1.0 | ||
*/ | ||
@Public | ||
public interface Database { | ||
|
||
/** A name to identify this database. */ | ||
String name(); | ||
|
||
/** Options of this database. */ | ||
Map<String, String> options(); | ||
|
||
/** Optional comment of this database. */ | ||
Optional<String> comment(); | ||
|
||
static Database of(String name, Map<String, String> options, @Nullable String comment) { | ||
return new DatabaseImpl(name, options, comment); | ||
} | ||
|
||
static Database of(String name) { | ||
return new DatabaseImpl(name, new HashMap<>(), null); | ||
} | ||
|
||
/** Implementation of {@link Database}. */ | ||
class DatabaseImpl implements Database { | ||
|
||
private final String name; | ||
private final Map<String, String> options; | ||
@Nullable private final String comment; | ||
|
||
public DatabaseImpl(String name, Map<String, String> options, @Nullable String comment) { | ||
this.name = name; | ||
this.options = options; | ||
this.comment = comment; | ||
} | ||
|
||
@Override | ||
public String name() { | ||
return name; | ||
} | ||
|
||
@Override | ||
public Map<String, String> options() { | ||
return options; | ||
} | ||
|
||
@Override | ||
public Optional<String> comment() { | ||
return Optional.ofNullable(comment); | ||
} | ||
} | ||
} |
Oops, something went wrong.