Block comment /* **/

Community Edition 6.6.0 build 7909 . Using web UI to run query
Block comment /* **/ with the second star at the end causing problems with select statement. The most annoying is ignoring an index :

WHERE ReceivedDate.Value >= ‘2021/09/09’ AND ReceivedDate.Value < ‘2021/09/10’
/* with the second star at the end **/
AND _Type = ‘MyType’

runs as primary scan, when

WHERE ReceivedDate.Value >= ‘2021/09/09’ AND ReceivedDate.Value < ‘2021/09/10’
/* without the second star at the end */
AND _Type = ‘MyType’

uses correct index. Motivation is a desire to decorate query text

/************** My nice comment ***********************************/

Track via MB-48407