build: bump pymysql (#20478)
Actual fix for this bandaid fix: https://github.com/frappe/frappe/pull/20475 Keeping pymysql hard pinned until we have better way to get last full query.
This commit is contained in:
parent
229dcb3c91
commit
024faff025
2 changed files with 2 additions and 2 deletions
|
|
@ -200,7 +200,7 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database):
|
|||
return db_size[0].get("database_size")
|
||||
|
||||
def log_query(self, query, values, debug, explain):
|
||||
self.last_query = query = self._cursor._last_executed
|
||||
self.last_query = query = self._cursor._executed
|
||||
self._log_query(query, debug, explain)
|
||||
return self.last_query
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ dependencies = [
|
|||
"Jinja2~=3.1.2",
|
||||
"Pillow~=9.3.0",
|
||||
"PyJWT~=2.4.0",
|
||||
"PyMySQL==1.0.2",
|
||||
"PyMySQL==1.0.3",
|
||||
"PyPDF2~=2.1.0",
|
||||
"PyPika~=0.48.9",
|
||||
"PyQRCode~=1.2.1",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue