-
Just memorializing this here in case anybody else comes across this issue. Will try to submit a PR to docs when I have time. DataFusion is throwing a "FieldNotFound" error when the column is definitely there. |
Beta Was this translation helpful? Give feedback.
Answered by
riziles
Mar 27, 2025
Replies: 1 comment
-
Set from datafusion import SessionConfig, SessionContext
from deltalake import DeltaTable
cfg = SessionConfig().set("datafusion.sql_parser.enable_ident_normalization", "false")
ctx = SessionContext(cfg)
ctx.register_table_provider("data", DeltaTable("msr_data"))
ctx.sql("select CutoffDate from data limit 10").show() |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
riziles
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Set
datafusion.sql_parser.enable_ident_normalization
to"false"
.