From 24e839c04c39d1f4423b267c371e8e5b5bc33867 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 12 Feb 2023 11:03:37 +0100 Subject: Adding upstream version 11.0.1. Signed-off-by: Daniel Baumann --- sqlglot/executor/__init__.py | 1 + sqlglot/executor/python.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'sqlglot/executor') diff --git a/sqlglot/executor/__init__.py b/sqlglot/executor/__init__.py index 67b4b00..c3d2701 100644 --- a/sqlglot/executor/__init__.py +++ b/sqlglot/executor/__init__.py @@ -1,5 +1,6 @@ """ .. include:: ../../posts/python_sql_engine.md + ---- """ diff --git a/sqlglot/executor/python.py b/sqlglot/executor/python.py index 29848c6..de570b0 100644 --- a/sqlglot/executor/python.py +++ b/sqlglot/executor/python.py @@ -408,7 +408,7 @@ def _lambda_sql(self, e: exp.Lambda) -> str: class Python(Dialect): class Tokenizer(tokens.Tokenizer): - ESCAPES = ["\\"] + STRING_ESCAPES = ["\\"] class Generator(generator.Generator): TRANSFORMS = { -- cgit v1.2.3