debian-forge-composer/vendor/github.com/jackc/pgproto3/v2
Ondřej Budai 0359647a82 go.mod: update to Go 1.18
Fedora 35 support was dropped, so we can update to a newer Go.

Stable RHEL 8 and 9 and Fedora 36 ships Go 1.18, so let's switch to it.

"//go:build" directives are now apparently enforced by go fmt, so that's why
there were added.

Also, all the github actions were adjusted to use Go 1.18.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
2023-01-09 14:03:18 +01:00
..
.travis.yml
authentication_cleartext_password.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
authentication_gss.go go.mod: Update openshift-online/ocm-sdk-go 2022-05-19 22:18:42 +02:00
authentication_gss_continue.go go.mod: Update openshift-online/ocm-sdk-go 2022-05-19 22:18:42 +02:00
authentication_md5_password.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
authentication_ok.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
authentication_sasl.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
authentication_sasl_continue.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
authentication_sasl_final.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
backend.go build(deps): bump github.com/jackc/pgx/v4 from 4.16.0 to 4.17.1 2022-08-30 15:34:23 +02:00
backend_key_data.go
big_endian.go
bind.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
bind_complete.go
cancel_request.go
chunkreader.go
close.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
close_complete.go
command_complete.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
copy_both_response.go go.mod: Update openshift-online/ocm-sdk-go 2022-05-19 22:18:42 +02:00
copy_data.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
copy_done.go
copy_fail.go
copy_in_response.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
copy_out_response.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
data_row.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
describe.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
doc.go
empty_query_response.go
error_response.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
execute.go
flush.go
frontend.go build(deps): bump github.com/jackc/pgx/v4 from 4.16.0 to 4.17.1 2022-08-30 15:34:23 +02:00
function_call.go build(deps): bump github.com/jackc/pgx/v4 from 4.13.0 to 4.15.0 2022-04-08 10:22:31 +02:00
function_call_response.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
gss_enc_request.go
gss_response.go go.mod: Update openshift-online/ocm-sdk-go 2022-05-19 22:18:42 +02:00
LICENSE
no_data.go
notice_response.go
notification_response.go
parameter_description.go
parameter_status.go
parse.go
parse_complete.go
password_message.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
pgproto3.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
portal_suspended.go
query.go
README.md
ready_for_query.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
row_description.go build(deps): bump github.com/jackc/pgtype from 1.7.0 to 1.8.1 2021-09-01 16:17:14 +02:00
sasl_initial_response.go build(deps): bump github.com/jackc/pgx/v4 from 4.13.0 to 4.15.0 2022-04-08 10:22:31 +02:00
sasl_response.go build(deps): bump github.com/jackc/pgx/v4 from 4.13.0 to 4.15.0 2022-04-08 10:22:31 +02:00
ssl_request.go
startup_message.go
sync.go
terminate.go

Build Status

pgproto3

Package pgproto3 is a encoder and decoder of the PostgreSQL wire protocol version 3.

pgproto3 can be used as a foundation for PostgreSQL drivers, proxies, mock servers, load balancers and more.

See example/pgfortune for a playful example of a fake PostgreSQL server.

Extracted from original implementation in https://github.com/jackc/pgx.