79550353

Date: 2025-04-02 10:16:21
Score: 1.5
Natty:
Report link

You could use COALESCE to change the NULL values.

select 
       coalesce(path, '') as path
      ,comment 
from  read_csv('${path}')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mike_W