Package-level declarations

Types

Link copied to clipboard
fun interface ColumnNameGenerator
Link copied to clipboard
value class ColumnNameMapping(columnNameMapping: Map<String, String>) : Map<String, String>

map from the column name as declared in the schema, to the column name that we'll create in the final (typed) table.

Link copied to clipboard
Link copied to clipboard

Some destinations can efficiently fetch multiple tables' information in a single query, so this interface accepts multiple streams in a single method call.

Link copied to clipboard
@Singleton
open class DefaultTempTableNameGenerator(internalNamespace: String? = null, affixLength: Int = 8, affixSeparator: String = "", hashLength: Int = 32) : TempTableNameGenerator

better handling for temp table names - e.g. postgres has a 64-char table name limit, so we want to avoid running into that. This method generates a table name with (by default) at most 64 characters (4 * affixLength + 2 * affixSeparator.length + hashLength).

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
sealed interface TableNameGenerator
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard

CDC meta column names.