Documentation
¶
Index ¶
Constants ¶
View Source
const ( ModType_INSERT = "INSERT" ModType_UPDATE = "UPDATE" ModType_DELETE = "DELETE" )
View Source
const (
RootPartitionToken = "Parent0"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChangeRecord ¶
type ChangeRecord struct {
DataChangeRecords []*dataChangeRecord `spanner:"data_change_record" json:"data_change_record"`
HeartbeatRecords []*HeartbeatRecord `spanner:"heartbeat_record" json:"heartbeat_record"`
ChildPartitionsRecords []*ChildPartitionsRecord `spanner:"child_partitions_record" json:"child_partitions_record"`
}
type ChildPartition ¶
type ChildPartitionsRecord ¶
type ChildPartitionsRecord struct {
StartTimestamp time.Time `spanner:"start_timestamp" json:"start_timestamp"`
RecordSequence string `spanner:"record_sequence" json:"record_sequence"`
ChildPartitions []*ChildPartition `spanner:"child_partitions" json:"child_partitions"`
}
type ColumnType ¶
type ColumnType struct {
Name string `json:"name"`
Type Type `json:"type"`
IsPrimaryKey bool `json:"is_primary_key,omitempty"`
OrdinalPosition int64 `json:"ordinal_position"`
}
ColumnType is the metadata of the column.
type DataChangeRecord ¶
type DataChangeRecord struct {
CommitTimestamp time.Time `json:"commit_timestamp"`
RecordSequence string `json:"record_sequence"`
ServerTransactionID string `json:"server_transaction_id"`
IsLastRecordInTransactionInPartition bool `json:"is_last_record_in_transaction_in_partition"`
TableName string `json:"table_name"`
ColumnTypes []*ColumnType `json:"column_types"`
Mods []*Mod `json:"mods"`
ModType ModType `json:"mod_type"`
ValueCaptureType string `json:"value_capture_type"`
NumberOfRecordsInTransaction int64 `json:"number_of_records_in_transaction"`
NumberOfPartitionsInTransaction int64 `json:"number_of_partitions_in_transaction"`
TransactionTag string `json:"transaction_tag"`
IsSystemTransaction bool `json:"is_system_transaction"`
}
DataChangeRecord is the change set of the table.
type HeartbeatRecord ¶
type Mod ¶
type Mod struct {
Keys map[string]interface{} `json:"keys,omitempty"`
NewValues map[string]interface{} `json:"new_values,omitempty"`
OldValues map[string]interface{} `json:"old_values,omitempty"`
}
Mod contains the keys and the values of the changed records.
type PartitionMetadata ¶
type PartitionMetadata struct {
PartitionToken string `spanner:"PartitionToken" json:"partition_token"`
ParentTokens []string `spanner:"ParentTokens" json:"parent_tokens"`
StartTimestamp time.Time `spanner:"StartTimestamp" json:"start_timestamp"`
EndTimestamp time.Time `spanner:"EndTimestamp" json:"end_timestamp"`
HeartbeatMillis int64 `spanner:"HeartbeatMillis" json:"heartbeat_millis"`
State State `spanner:"State" json:"state"`
Watermark time.Time `spanner:"Watermark" json:"watermark"`
CreatedAt time.Time `spanner:"CreatedAt" json:"created_at"`
ScheduledAt *time.Time `spanner:"ScheduledAt" json:"scheduled_at,omitempty"`
RunningAt *time.Time `spanner:"RunningAt" json:"running_at,omitempty"`
UpdatedAt time.Time `spanner:"UpdatedAt" json:"updated_at,omitempty"`
FinishedAt *time.Time `spanner:"FinishedAt" json:"finished_at,omitempty"`
RunnerID *string `spanner:"RunnerID" json:"runner_id,omitempty"`
}
func (*PartitionMetadata) IsRootPartition ¶
func (p *PartitionMetadata) IsRootPartition() bool
IsRootPartition returns true if this is root partition.
type Type ¶
type Type struct {
Code TypeCode `json:"code"`
ArrayElementType TypeCode `json:"array_element_type,omitempty"`
}
Type is the type of the column.
type TypeCode ¶
type TypeCode string
const ( TypeCode_NONE TypeCode = "" TypeCode_BOOL TypeCode = "BOOL" TypeCode_INT64 TypeCode = "INT64" TypeCode_FLOAT64 TypeCode = "FLOAT64" TypeCode_TIMESTAMP TypeCode = "TIMESTAMP" TypeCode_DATE TypeCode = "DATE" TypeCode_STRING TypeCode = "STRING" TypeCode_BYTES TypeCode = "BYTES" TypeCode_NUMERIC TypeCode = "NUMERIC" TypeCode_JSON TypeCode = "JSON" TypeCode_ARRAY TypeCode = "ARRAY" )
Click to show internal directories.
Click to hide internal directories.