18 lines
		
	
	
		
			659 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			659 B
		
	
	
	
		
			Go
		
	
	
	
| package constants
 | |
| 
 | |
| // PostgreSQL specific constants
 | |
| const (
 | |
| 	FESsuffix                     = "-event-streams"
 | |
| 	EventStreamSourcePGType       = "PostgresLogicalReplication"
 | |
| 	EventStreamSourceSlotName     = "fes"
 | |
| 	EventStreamSourceAuthType     = "DatabaseAuthenticationSecret"
 | |
| 	EventStreamFlowPgNakadiType   = "PostgresWalToNakadiDataEvent"
 | |
| 	EventStreamFlowPgApiType      = "PostgresWalToApiCallHomeEvent"
 | |
| 	EventStreamFlowDataTypeColumn = "data_type"
 | |
| 	EventStreamFlowDataOpColumn   = "data_op"
 | |
| 	EventStreamFlowMetadataColumn = "metadata"
 | |
| 	EventStreamFlowDataColumn     = "data"
 | |
| 	EventStreamSinkNakadiType     = "Nakadi"
 | |
| 	EventStreamSinkSqsType        = "Sqs"
 | |
| )
 |