enum fields cause errors when used in a where clause with sync_render.
execute "CREATE TYPE todo_status AS ENUM ('pending', 'running', 'paused', 'completed', 'skipped')"
sync_render(
conn,
params,
from(todo in Todo, where: todo.status in ["pending", "running", "paused"])
)
enum fields cause errors when used in a
whereclause withsync_render.execute "CREATE TYPE todo_status AS ENUM ('pending', 'running', 'paused', 'completed', 'skipped')"