A while ago @xuefengze found that RW will throw error messages when using psql 14.9 to connect
The error:
ERROR pgwire::pg_server: error when reading message error=Invalid input config: odd number of config pairs [""], len 1
which is an error thrown by startup message.
Although 14.7 instead of 14.9 can work (also mine 16.0), it reminds us to test different versions of clients, including Python, java, etc. Most of these client libraries are quite stable and rarely updated.
@xuefengze:
I also tried 16.1, and it can't work. My device is macos 13.4.1(Apple silicon M1 pro), and I install postgresql by Homebrew.
after #14272, we want to continue improving the testing of client libraries here: https://github.com/risingwavelabs/risingwave/tree/main/integration_tests/client-library
A while ago @xuefengze found that RW will throw error messages when using psql 14.9 to connect
The error:
which is an error thrown by startup message.
Although 14.7 instead of 14.9 can work (also mine 16.0), it reminds us to test different versions of clients, including Python, java, etc. Most of these client libraries are quite stable and rarely updated.
@xuefengze: