```typescript await sql` UPDATE foo AS f SET ${sql({ bar: sql`now()` }, ["bar"])} `; ``` expected; ```sql update foo as f set bar = now() ``` actual: ```sql update foo as f set now() as "bar" ``` Removing the alias does the trick.