Xavier Stevens

Results 4 comments of Xavier Stevens

Only thing I can think of is Protocol Buffers and/or protobuf-c are possibly out of sync. I haven't touched this code in a couple of years, but I was able...

I did this locally on a fresh Postgres 9.6 and it doesn't crash. ``` CREATE SEQUENCE accounts_user_id_seq; CREATE TABLE accounts_user ( id integer not null default nextval('accounts_user_id_seq'::regclass), password character varying(128)...

@nacivida Try creating a fork first and then you should be able to PR here from your fork. Side note: If you're modifying the debezium version you may want to...

This project was created before I knew about Postgres 9.4 Logical WAL Decoding. pg_kafka is geared toward pushing on a trigger or calling manually from SQL. This approach has a...