Hi guys, I got this error: `Encoding("encoding: unsorted encoding (LCID: 0x409, sort ID: 42)")`. When I connect to the DB no problem occurs but when I run the query `match client.query("SELECT * FROM INFORMATION_SCHEMA.TABLES", &[]).await` the above error occurs. I have not found much information online, do you know how to help me? This is my **Cargo.toml**: ``` [package] ... edition = "2021" rust-version = "1.57" [build-dependencies] tauri-build = { version = "1.0.4", features = [] } embed-resource = "1.7" [dependencies] ... tauri = { version = "1.0.4", features = ["api-all", "updater"] } tauri-bundler = "1.0.5" async-std = "1.12.0" ``` Thanks.