Struct RelationMessageColumn
Represents a column in a Logical Replication Protocol relation message
Inherited Members
Namespace: Npgsql.Replication.PgOutput.Messages
Assembly: Npgsql.dll
Syntax
public readonly struct RelationMessageColumn
Properties
ColumnName
Name of the column.
Declaration
public readonly string ColumnName { get; }
Property Value
Type | Description |
---|---|
String |
DataTypeId
ID of the column's data type.
Declaration
public readonly uint DataTypeId { get; }
Property Value
Type | Description |
---|---|
UInt32 |
Flags
Flags for the column. Currently can be either 0 for no flags or 1 which marks the column as part of the key.
Declaration
public readonly byte Flags { get; }
Property Value
Type | Description |
---|---|
Byte |
TypeModifier
Type modifier of the column (atttypmod).
Declaration
public readonly int TypeModifier { get; }
Property Value
Type | Description |
---|---|
Int32 |