summaryrefslogtreecommitdiffstats
path: root/sqlglot/lineage.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-20 08:50:30 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-20 08:50:30 +0000
commitcc4c7716b8fe6b13bf735ab1ccbc1a92ded4d6d5 (patch)
tree3723d527945944e4fed74f7fe9da43407349351a /sqlglot/lineage.py
parentAdding upstream version 11.1.3. (diff)
downloadsqlglot-cc4c7716b8fe6b13bf735ab1ccbc1a92ded4d6d5.tar.xz
sqlglot-cc4c7716b8fe6b13bf735ab1ccbc1a92ded4d6d5.zip
Adding upstream version 11.2.0.upstream/11.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sqlglot/lineage.py')
-rw-r--r--sqlglot/lineage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlglot/lineage.py b/sqlglot/lineage.py
index 908f126..2e563ae 100644
--- a/sqlglot/lineage.py
+++ b/sqlglot/lineage.py
@@ -113,7 +113,7 @@ def lineage(
)
else:
if table not in tables:
- tables[table] = Node(name=table, source=source, expression=source)
+ tables[table] = Node(name=c.sql(), source=source, expression=source)
node.downstream.append(tables[table])
return node