Struct RelationMessageColumn
Represents a column in a Logical Replication Protocol relation message
Namespace: Npgsql.Replication.PgOutput.Messages
Assembly: Npgsql.dll
Syntax
public readonly struct RelationMessageColumn
Properties
| Improve this Doc View SourceColumnName
Name of the column.
Declaration
public string ColumnName { get; }
Property Value
Type | Description |
---|---|
string |
DataTypeId
ID of the column's data type.
Declaration
public uint DataTypeId { get; }
Property Value
Type | Description |
---|---|
uint |
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 byte Flags { get; }
Property Value
Type | Description |
---|---|
byte |
TypeModifier
Type modifier of the column (atttypmod).
Declaration
public int TypeModifier { get; }
Property Value
Type | Description |
---|---|
int |