Documentation
¶
Index ¶
Constants ¶
View Source
const ( // KeyURL is the config name for a connection URL. KeyURL = "url" // KeyTable is the config name for a table. KeyTable = "table" // KeyKey is the config name for a key. KeyKey = "key" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
URL string `validate:"required,url"`
// The maximum identifier length is 63.
// See https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS.
Table string `validate:"required,max=63"`
Key string `validate:"required,max=63"`
}
Config represents configuration needed for Materialize.
Click to show internal directories.
Click to hide internal directories.