/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test-logs
src/Npgsql/Replication/PgOutput/PgOutputProtocolVersion.cs
30 строк
862 B
Nino Floris
Remove obsolete UTF-8 BOMs (#6542)
13 апр 2026, 17:13
Не верифицирован
13 апр 2026, 17:13
5225216
Код
Авторство
О чём код?
namespace Npgsql.Replication.PgOutput; /// <summary> /// The Logical Streaming Replication Protocol version. /// </summary> public enum PgOutputProtocolVersion : ulong { /// <summary> /// Version 1 is supported for server version 10 and above. /// </summary> V1 = 1UL, /// <summary> /// Version 2 is supported only for server version 14 and above, and it allows /// streaming of large in-progress transactions. /// </summary> V2 = 2UL, /// <summary> /// Version 3 is supported only for server version 15 and above, and it allows /// streaming of two-phase commits. /// </summary> V3 = 3UL, /// <summary> /// Version 4 is supported only for server version 16 and above, and it allows /// streams of large in-progress transactions to be applied in parallel. /// </summary> V4 = 4UL }