Andrew
Andrew
I use mac brew,it‘s not easy to rollback pgcli version。
I have do some test,sample code will always show false with psycopy `3.1.18`. ``` #!/bin/python import psycopg if __name__ == '__main__': with psycopg.connect("dbname=testdb user=test host=192.168.64.5 port=5432") as conn: with conn.cursor()...
when I change version to psycopg2, new error rise. ``` Traceback (most recent call last): File "/Users/xxx/Developer/psycopytest/testpsycopg.py", line 8, in for record in cur.fetchall(): psycopg2.InterfaceError: can't parse boolean: '1' ```
It's weird, same version with same code, original pgsql display right result, opengauss display wrong result, but opengauss's client `gsql` do not have such problem. @j-bennet
bug already fixed, close this issue,thx!