MariaDB / mariadb_kernel

A MariaDB Jupyter kernel
BSD 3-Clause "New" or "Revised" License
30 stars 21 forks source link

Client regex does not catch MySQL prompt #52

Closed LinuxJedi closed 1 year ago

LinuxJedi commented 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.

LinuxJedi commented 1 year ago

This was fixed in #40, but we haven't released it. I will cut a release.