Closed LinuxJedi closed 1 year ago
Reported by 雍兴辉 via email:
I have found that my /usr/bin/mariadb output as follows: MySQL [(none)]> Not the same as the MariaDBClient.__init__ self.prompt = re.compile(r"MariaDB \[.*\]>[ \t]") After I changed to: self.prompt = re.compile(r"MySQL \[.*\]>[ \t]") It works well.
/usr/bin/mariadb
MySQL [(none)]>
MariaDBClient.__init__
self.prompt = re.compile(r"MariaDB \[.*\]>[ \t]")
self.prompt = re.compile(r"MySQL \[.*\]>[ \t]")
This was fixed in #40, but we haven't released it. I will cut a release.
Reported by 雍兴辉 via email:
I have found that my
/usr/bin/mariadb
output as follows:MySQL [(none)]>
Not the same as theMariaDBClient.__init__
self.prompt = re.compile(r"MariaDB \[.*\]>[ \t]")
After I changed to:self.prompt = re.compile(r"MySQL \[.*\]>[ \t]")
It works well.