pgx/pgproto3
Ville Skyttä c6c50110db Spelling and grammar fixes 2023-10-07 09:26:23 -05:00
..
example/pgfortune
testdata/fuzz/FuzzFrontend
README.md Spelling and grammar fixes 2023-10-07 09:26:23 -05:00
authentication_cleartext_password.go
authentication_gss.go
authentication_gss_continue.go
authentication_md5_password.go
authentication_ok.go
authentication_sasl.go
authentication_sasl_continue.go
authentication_sasl_final.go
backend.go Apply `gofmt -s` 2023-01-24 07:55:00 -06:00
backend_key_data.go
backend_test.go
big_endian.go
bind.go
bind_complete.go
cancel_request.go
chunkreader.go iobufpool uses *[]byte instead of []byte to reduce allocations 2023-01-28 08:02:49 -06:00
chunkreader_test.go Use bytes.Equal rather than bytes.Compare ==/!= 0 2023-07-08 12:08:05 -05:00
close.go
close_complete.go
command_complete.go
copy_both_response.go
copy_both_response_test.go
copy_data.go
copy_done.go
copy_fail.go
copy_in_response.go
copy_out_response.go
data_row.go
describe.go
doc.go Spelling and grammar fixes 2023-10-07 09:26:23 -05:00
empty_query_response.go
error_response.go
execute.go
flush.go
frontend.go Spelling and grammar fixes 2023-10-07 09:26:23 -05:00
frontend_test.go
function_call.go
function_call_response.go
function_call_test.go
fuzz_test.go
gss_enc_request.go
gss_response.go
json_test.go
no_data.go
notice_response.go
notification_response.go
parameter_description.go
parameter_status.go
parse.go
parse_complete.go
password_message.go
pgproto3.go
portal_suspended.go
query.go
ready_for_query.go
row_description.go
sasl_initial_response.go
sasl_response.go
ssl_request.go
startup_message.go Spelling and grammar fixes 2023-10-07 09:26:23 -05:00
sync.go
terminate.go
trace.go Fix data race when pgproto3 trace is enabled during CopyFrom 2023-08-05 07:30:59 -05:00
trace_test.go Drastically increase allowed test times for potato CI 2023-07-11 21:16:08 -05:00

README.md

pgproto3

Package pgproto3 is an 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.