Uses of Class
io.debezium.connector.postgresql.PostgresType
-
-
Uses of PostgresType in io.debezium.connector.postgresql
Fields in io.debezium.connector.postgresql declared as PostgresType Modifier and Type Field Description private PostgresTypePostgresType. elementTypeprivate PostgresTypePostgresType. parentTypestatic PostgresTypePostgresType. UNKNOWNFields in io.debezium.connector.postgresql with type parameters of type PostgresType Modifier and Type Field Description private Map<String,PostgresType>TypeRegistry. nameToTypeprivate Map<Integer,PostgresType>TypeRegistry. oidToTypeMethods in io.debezium.connector.postgresql that return PostgresType Modifier and Type Method Description PostgresTypePostgresType.Builder. build()PostgresTypeTypeRegistry. get(int oid)PostgresTypeTypeRegistry. get(String name)PostgresTypePostgresType. getElementType()PostgresTypePostgresType. getParentType()PostgresTypePostgresType. getRootType()private PostgresTypeTypeRegistry. loadType(PreparedStatement statement)private PostgresTypeTypeRegistry. resolveUnknownType(int lookupOid)private PostgresTypeTypeRegistry. resolveUnknownType(String name)Methods in io.debezium.connector.postgresql with parameters of type PostgresType Modifier and Type Method Description private voidTypeRegistry. addType(PostgresType type)protected ObjectPostgresValueConverter. convertArray(Column column, org.apache.kafka.connect.data.Field fieldDefn, PostgresType elementType, ValueConverter elementConverter, Object data)private ObjectPostgresValueConverter. resolveArrayValue(Object value, PostgresType elementType)Constructors in io.debezium.connector.postgresql with parameters of type PostgresType Constructor Description PostgresType(String name, int oid, int jdbcId, int modifiers, org.postgresql.core.TypeInfo typeInfo, List<String> enumValues, PostgresType parentType, PostgresType elementType)PostgresType(String name, int oid, int jdbcId, org.postgresql.core.TypeInfo typeInfo, List<String> enumValues, PostgresType parentType, PostgresType elementType)UnchangedToastedReplicationMessageColumn(String columnName, PostgresType type, String typeWithModifiers, boolean optional, boolean hasMetadata) -
Uses of PostgresType in io.debezium.connector.postgresql.connection
Fields in io.debezium.connector.postgresql.connection declared as PostgresType Modifier and Type Field Description private PostgresTypeAbstractReplicationMessageColumn. typeMethods in io.debezium.connector.postgresql.connection that return PostgresType Modifier and Type Method Description PostgresTypeAbstractReplicationMessageColumn. getType()PostgresTypeReplicationMessage.Column. getType()Methods in io.debezium.connector.postgresql.connection with parameters of type PostgresType Modifier and Type Method Description ObjectAbstractColumnValue. asArray(String columnName, PostgresType type, String fullType, PostgresStreamingChangeEventSource.PgConnectionSupplier connection)ObjectReplicationMessage.ColumnValue. asArray(String columnName, PostgresType type, String fullType, PostgresStreamingChangeEventSource.PgConnectionSupplier connection)booleanAbstractColumnValue. isArray(PostgresType type)booleanReplicationMessage.ColumnValue. isArray(PostgresType type)static ObjectReplicationMessageColumnValueResolver. resolveValue(String columnName, PostgresType type, String fullType, ReplicationMessage.ColumnValue value, PostgresStreamingChangeEventSource.PgConnectionSupplier connection, boolean includeUnknownDatatypes, TypeRegistry typeRegistry)Resolve the value of aReplicationMessage.ColumnValue.Constructors in io.debezium.connector.postgresql.connection with parameters of type PostgresType Constructor Description AbstractReplicationMessageColumn(String columnName, PostgresType type, String typeWithModifiers, boolean optional, boolean hasMetadata)TypeMetadataImpl(String columnName, PostgresType type, String typeWithModifiers, boolean optional) -
Uses of PostgresType in io.debezium.connector.postgresql.connection.pgoutput
Fields in io.debezium.connector.postgresql.connection.pgoutput declared as PostgresType Modifier and Type Field Description private PostgresTypeColumnMetaData. postgresTypeMethods in io.debezium.connector.postgresql.connection.pgoutput that return PostgresType Modifier and Type Method Description PostgresTypeColumnMetaData. getPostgresType()Methods in io.debezium.connector.postgresql.connection.pgoutput with parameters of type PostgresType Modifier and Type Method Description static ObjectPgOutputReplicationMessage. getValue(String columnName, PostgresType type, String fullType, String rawValue, PostgresStreamingChangeEventSource.PgConnectionSupplier connection, boolean includeUnknownDataTypes, TypeRegistry typeRegistry)Converts the value (string representation) coming from PgOutput plugin to a Java value based on the type of the column from the message.Constructors in io.debezium.connector.postgresql.connection.pgoutput with parameters of type PostgresType Constructor Description ColumnMetaData(String columnName, PostgresType postgresType, boolean key, boolean optional, boolean hasDefaultValue, Object defaultValue, int typeModifier)Create a metadata structure representing a column. -
Uses of PostgresType in io.debezium.connector.postgresql.connection.pgproto
Methods in io.debezium.connector.postgresql.connection.pgproto with parameters of type PostgresType Modifier and Type Method Description ObjectPgProtoColumnValue. asArray(String columnName, PostgresType type, String fullType, PostgresStreamingChangeEventSource.PgConnectionSupplier connection)ObjectPgProtoReplicationMessage. getValue(String columnName, PostgresType type, String fullType, PgProto.DatumMessage datumMessage, PostgresStreamingChangeEventSource.PgConnectionSupplier connection, boolean includeUnknownDatatypes)booleanPgProtoColumnValue. isArray(PostgresType type) -
Uses of PostgresType in io.debezium.connector.postgresql.connection.wal2json
Methods in io.debezium.connector.postgresql.connection.wal2json with parameters of type PostgresType Modifier and Type Method Description ObjectWal2JsonReplicationMessage. getValue(String columnName, PostgresType type, String fullType, Value rawValue, PostgresStreamingChangeEventSource.PgConnectionSupplier connection, boolean includeUnknownDatatypes)Converts the value (string representation) coming from wal2json plugin to a Java value based on the type of the column from the message.
-