1
0
Fork 0
sqlglot/sqlglot/dataframe/sql/util.py
Daniel Baumann bb75596aa9
Adding upstream version 15.0.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 15:56:32 +01:00

32 lines
1.1 KiB
Python

from __future__ import annotations
import typing as t
from sqlglot import expressions as exp
from sqlglot.dataframe.sql import types
if t.TYPE_CHECKING:
from sqlglot.dataframe.sql._typing import SchemaInput
def get_column_mapping_from_schema_input(schema: SchemaInput) -> t.Dict[str, t.Optional[str]]:
if isinstance(schema, dict):
return schema
elif isinstance(schema, str):
col_name_type_strs = [x.strip() for x in schema.split(",")]
return {
name_type_str.split(":")[0].strip(): name_type_str.split(":")[1].strip()
for name_type_str in col_name_type_strs
}
elif isinstance(schema, types.StructType):
return {struct_field.name: struct_field.dataType.simpleString() for struct_field in schema}
return {x.strip(): None for x in schema} # type: ignore
def get_tables_from_expression_with_join(expression: exp.Select) -> t.List[exp.Table]:
if not expression.args.get("joins"):
return []
left_table = expression.args["from"].this
other_tables = [join.this for join in expression.args["joins"]]
return [left_table] + other_tables