Expected behavior
Should correctly parse PostgreSQL UPDATE ... FROM queries with table aliases.
Error: [E014] Failed to find a table name from a FROM statement: statement:
Minimal reproducible example
UPDATE user_configs uc
SET config = $2
FROM users u
WHERE uc.user_id = u.id
AND u.user_id_tg = $1;
Expected behavior
Should correctly parse PostgreSQL
UPDATE ... FROMqueries with table aliases.Error: [E014] Failed to find a table name from a FROM statement: statement:Minimal reproducible example