Hi,
I’m trying to update a dataset from MySQL Aurora and I received this error ““Internal error: parallel query failed, please retry”” ¿What type of error is this? I have similar queries and I don’t have any problem related to that.
Thanks
Hi,
I’m trying to update a dataset from MySQL Aurora and I received this error ““Internal error: parallel query failed, please retry”” ¿What type of error is this? I have similar queries and I don’t have any problem related to that.
Thanks
Hi @KLIKIN - Can you please give more details so that it will be easy to understand this.
Regards - Sanjeeb
Thanks for your answer. About the mentioned points:
Hi @KLIKIN - Can you share the exact where clause statement?
Regards - Sanjeeb
WHERE payments.date LIKE '%2022%
Hi @KLIKIN - Can you change the where clause by below way
WHERE `payments.date` LIKE '%2022%'
Regards - Sanjeeb
Unknown column
I don’t know if it’s a problem with the marks
can you please try this and make a double quote
WHERE "payments.date" LIKE '%2022%'
The real issue date should not be a field name as it is a data type.
Regards - Sanjeeb
It’s not working, it cannot ingest any row
Hi @KLIKIN - The below statement is working fine for me . See the below screenshot. What is your source database, is it my sql or any other database.
select * from test where `date` like '%2020%'
Regards - Sanjeeb