14.1
data = Import["file.csv"]
data[[2]]
{"2019-01-09T01:00:00+02:00", 1.276, 1.2782, 1.2757, 1.2779, 0.0019, 0.0025, 0.0022, -0.0003}
14.2
Import now takes x2 time due to converting 1st element. Seems like I need to use Import["file","RawData"]. Editing every notebook is inconvenient...
I tried to modify init.m with SetOptions[Import,"RawData"] but that's invalid replacement rule.
Looking for advice. How to make it normal again. Thanks.