Skip to content
Snippets Groups Projects
Commit 0af7e514 authored by Liang-Chi Hsieh's avatar Liang-Chi Hsieh Committed by Michael Armbrust
Browse files

[SPARK-3925][SQL] Do not consider the ordering of qualifiers during comparison

The orderings should not be considered during the comparison between old qualifiers and new qualifiers.

Author: Liang-Chi Hsieh <viirya@gmail.com>

Closes #2783 from viirya/full_qualifier_comp and squashes the following commits:

89f652c [Liang-Chi Hsieh] modification for comment.
abb5762 [Liang-Chi Hsieh] More comprehensive comparison of qualifiers.
parent 677852c3
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,7 @@ case class AttributeReference(name: String, dataType: DataType, nullable: Boolea
* Returns a copy of this [[AttributeReference]] with new qualifiers.
*/
override def withQualifiers(newQualifiers: Seq[String]) = {
if (newQualifiers == qualifiers) {
if (newQualifiers.toSet == qualifiers.toSet) {
this
} else {
AttributeReference(name, dataType, nullable)(exprId, newQualifiers)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment