summaryrefslogtreecommitdiffstats
path: root/sqlglot/executor/context.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-02-08 05:38:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-02-08 05:38:42 +0000
commitc66e4a33e1a07c439f03fe47f146a6c6482bf6df (patch)
treecfdf01111c063b3e50841695e6c2768833aea4dc /sqlglot/executor/context.py
parentReleasing debian version 20.11.0-1. (diff)
downloadsqlglot-c66e4a33e1a07c439f03fe47f146a6c6482bf6df.tar.xz
sqlglot-c66e4a33e1a07c439f03fe47f146a6c6482bf6df.zip
Merging upstream version 21.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sqlglot/executor/context.py')
-rw-r--r--sqlglot/executor/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlglot/executor/context.py b/sqlglot/executor/context.py
index d7952c1..e4c4040 100644
--- a/sqlglot/executor/context.py
+++ b/sqlglot/executor/context.py
@@ -44,9 +44,9 @@ class Context:
for other in self.tables.values():
if self._table.columns != other.columns:
- raise Exception(f"Columns are different.")
+ raise Exception("Columns are different.")
if len(self._table.rows) != len(other.rows):
- raise Exception(f"Rows are different.")
+ raise Exception("Rows are different.")
return self._table