I have a function defined in postgresql db which return void and makes an update inside the function.
when I do
Await.result(db.run(sqlu"""select function_name()"""), Duration.Inf)
I get this SlickException
Update statements should not return a ResultSet
Is there a way to call a function which returns void without getting this error.