Class PostgresTablePath
- java.lang.Object
-
- org.apache.flink.connector.jdbc.databases.postgres.catalog.PostgresTablePath
-
@Internal public class PostgresTablePath extends Object
Table path of PostgresSQL in Flink. Can be of formats "table_name" or "schema_name.table_name". When it's "table_name", the schema name defaults to "public".
-
-
Constructor Summary
Constructors Constructor Description PostgresTablePath(String pgSchemaName, String pgTableName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static PostgresTablePathfromFlinkTableName(String flinkTableName)StringgetFullPath()StringgetPgSchemaName()StringgetPgTableName()inthashCode()static StringtoFlinkTableName(String schema, String table)StringtoString()
-
-
-
Method Detail
-
fromFlinkTableName
public static PostgresTablePath fromFlinkTableName(String flinkTableName)
-
getFullPath
public String getFullPath()
-
getPgTableName
public String getPgTableName()
-
getPgSchemaName
public String getPgSchemaName()
-
-