Hello,
I have noticed different conversion function behaviors depending on the execution engine. For example, the 2 following statements do not give the same result because running on different engine.
select distinct to_double('80,1') from sys.audit_log;
select distinct to_double('80,1') from sys.dummy;
I'm looking for a note or documentation where this behavior is documented.