Cugar15

Results 9 comments of Cugar15

Hi, can you supply any more information about what is not working or symptoms of the problem?

Comparing the RefManuals for 5.7 and 8.0, the syntax for GRANT has changed. REQUIRE is no longer supported in 8.0 ` GRANT priv_type [(column_list)] [, priv_type [(column_list)]] ... ON [object_type]...

I just did a quick test on my system: MYSQL 5.7.30 MYSQL 8.0.35 Splitting up the commands: ```sql CREATE USER 'test'@'localhost' IDENTIFIED BY '***'; GRANT USAGE ON *.* TO 'test'@'localhost'...

Hi Sergio, thanks a lot for the prompt, detailed and excellent answer. The setup is working now - as expected. I still have two questions left: 1) Executing 'make test'...

HI Sergio, thanks again for the answer. Got it. For the statistics, I already read this original docu. Seems very cumbersome. I will close this question. Thanks a ton again...

Hi Sergio, here is a further finding. It seems, that when using: mysqlnd_ms.master_on=INSERT,UPDATE,DELETE,LOAD,REPLACE,CREATE,ALTER,DROP,TRUNCATE,RENAME,LOCK,UNLOCK,CALL,GRANT,REVOKE really all other statements than specified in the list above will be routed to the slave. In...

Correct, the bank sends response. The real problem is, that after executing the following marked statements in checkDecoupledSubmission: ``` $action->setTanRequest(null); processActionResponse($action, $response->filterByReferenceSegments($action->getRequestSegmentNumbers())); if ($action instanceof PaginateableAction && $action->hasMorePages()) { $this->execute($action);

Closing this since the explanation of Philipp is correct.

I did a bit of digging and here are my findings: 1) the clouDNS api returns whatever is specified under host. If host is empty and empty value is returned....