Package org.apache.druid.catalog.model
Class TableId
- java.lang.Object
-
- org.apache.druid.catalog.model.TableId
-
public class TableId extends Object
SQL-like compound table ID with schema and table name.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCATALOG_SCHEMAstatic StringDRUID_SCHEMAstatic StringEXTERNAL_SCHEMAstatic StringLOOKUP_SCHEMAstatic StringSYSTEM_SCHEMAstatic StringVIEW_SCHEMA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TableIddatasource(String name)booleanequals(Object o)static TableIdexternal(String name)inthashCode()Stringname()static TableIdof(String schema, String table)Stringschema()StringsqlName()StringtoString()Stringunquoted()
-
-
-
Field Detail
-
DRUID_SCHEMA
public static final String DRUID_SCHEMA
- See Also:
- Constant Field Values
-
LOOKUP_SCHEMA
public static final String LOOKUP_SCHEMA
- See Also:
- Constant Field Values
-
SYSTEM_SCHEMA
public static final String SYSTEM_SCHEMA
- See Also:
- Constant Field Values
-
CATALOG_SCHEMA
public static final String CATALOG_SCHEMA
- See Also:
- Constant Field Values
-
EXTERNAL_SCHEMA
public static final String EXTERNAL_SCHEMA
- See Also:
- Constant Field Values
-
VIEW_SCHEMA
public static final String VIEW_SCHEMA
- See Also:
- Constant Field Values
-
-