How does Amazon Aurora handle conditional queries based on MySQL version? I was unable to find any documentation on this.
For example, the code below inserts into a database for MySQL 5.6.4 or newer. What is result in Aurora?
I could spin up an instance but wanted to read the documentation about this to understand what incompatible features there are.
/*!50604 REPLACE INTO `phppos_app_config` (`key`, `value`) VALUES ('supports_full_text', '1')*/;
1 Answer 1
Aurora runs as mysql 5.6.10a so the comment queries still work as expected in regular mysql
REPLACE
in Aurora? (Please provide link.)SELECT /*!50604 "inside comment", */ NOW();
-- You will either seeinside comment
or not. The current time will show up in either case, as confirmation that the query was executed.