Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
When using connection string, sessionVariables option won't work when value contains comma.
Actual implementation of
r2dbc:mariadb://localhost:3306/db?sessionVariables=sql_mode=TRADITIONAL,NO_AUTO_VALUE_ON_ZERO,ONLY_FULL_GROUP_BY |
won't be considered like:
set sql_mode='TRADITIONAL,NO_AUTO_VALUE_ON_ZERO,ONLY_FULL_GROUP_BY'; |
but like command
set sql_mode=TRADITIONAL, NO_AUTO_VALUE_ON_ZERO=null, ONLY_FULL_GROUP_BY=null; |