Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[Spark] Fix AttributeReference mismatch for readChangeFeed queries coming from Spark Connect #3451

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,15 @@ object DeltaRelation extends DeltaLogging {
val relation = d.withOptions(options.asScala.toMap).toBaseRelation
val output = if (CDCReader.isCDCRead(options)) {
// Handles cdc for the spark.read.options().table() code path
toAttributes(relation.schema)
// Mapping needed for references to the table's columns coming from Spark Connect.
val newOutput = toAttributes(relation.schema)
newOutput.map { a =>
val existingReference = v2Relation.output
.find(e => e.name == a.name && e.dataType == a.dataType && e.nullable == a.nullable)
existingReference.map { e =>
e.copy(metadata = a.metadata)(exprId = e.exprId, qualifier = e.qualifier)
}.getOrElse(a)
}
} else {
v2Relation.output
}
Expand Down
Loading