When I wrote the book MySQL Concurrency I included a Python module for MySQL Shell that would help reproducing the examples in the book. Since things change, it has been necessary to update the code. In this blog I will explain what the changes are which also give me a chance to say thanks to those that have submitted pull requests.
Version v1.1 was mostly about correcting the directory structure
of the repository which was not as it was meant to be – and
different from the instructions in the book. Additionally some
files with code listings and images were missing. Finally, I
added a check whether the set_current_schema()
method is available for the session in the load()
method. This check is needed as only the new X Protocol (the …