Search Results for

    Show / Hide Table of Contents

    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 Source

    ColumnName

    Name of the column.

    Declaration
    public string ColumnName { get; }
    Property Value
    Type Description
    string
    | Improve this Doc View Source

    DataTypeId

    ID of the column's data type.

    Declaration
    public uint DataTypeId { get; }
    Property Value
    Type Description
    uint
    | Improve this Doc View Source

    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
    | Improve this Doc View Source

    TypeModifier

    Type modifier of the column (atttypmod).

    Declaration
    public int TypeModifier { get; }
    Property Value
    Type Description
    int
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team