From 3baf961bf84d7a67c838d6bc09cc5f0fe90a35b4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 30 Sep 2024 06:54:49 +0200 Subject: Merging upstream version 25.24.0. Signed-off-by: Daniel Baumann --- tests/dialects/test_dialect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/dialects/test_dialect.py') diff --git a/tests/dialects/test_dialect.py b/tests/dialects/test_dialect.py index 19effb3..96ce600 100644 --- a/tests/dialects/test_dialect.py +++ b/tests/dialects/test_dialect.py @@ -2221,9 +2221,9 @@ SELECT self.validate_all( "SUBSTR('123456', 2, 3)", write={ - "bigquery": "SUBSTR('123456', 2, 3)", + "bigquery": "SUBSTRING('123456', 2, 3)", "oracle": "SUBSTR('123456', 2, 3)", - "postgres": "SUBSTR('123456', 2, 3)", + "postgres": "SUBSTRING('123456' FROM 2 FOR 3)", }, ) self.validate_all( -- cgit v1.2.3