From 042432fc9a1f7c3d5d552f12449fe45109fbcd57 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 18:12:58 +0200 Subject: Adding upstream version 23.13.1. Signed-off-by: Daniel Baumann --- tests/test_build.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/test_build.py') diff --git a/tests/test_build.py b/tests/test_build.py index ad0bb9a..da1677f 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -545,6 +545,10 @@ class TestBuild(unittest.TestCase): lambda: exp.update("tbl", {"x": 1}, from_="tbl2"), "UPDATE tbl SET x = 1 FROM tbl2", ), + ( + lambda: exp.update("tbl", {"x": 1}, from_="tbl2 cross join tbl3"), + "UPDATE tbl SET x = 1 FROM tbl2 CROSS JOIN tbl3", + ), ( lambda: union("SELECT * FROM foo", "SELECT * FROM bla"), "SELECT * FROM foo UNION SELECT * FROM bla", -- cgit v1.2.3