This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch release-1.1.0 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 65aa9da7afb0fc75d08771f983a2a383a60a5434 Author: Lin Liu <[email protected]> AuthorDate: Fri Oct 17 13:51:17 2025 -0700 fix: show_index command (#14113) --- .../scala/org/apache/spark/sql/catalyst/plans/logical/Index.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/Index.scala b/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/Index.scala index 5b265bca8536..d083deb2616c 100644 --- a/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/Index.scala +++ b/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/Index.scala @@ -72,8 +72,8 @@ case class ShowIndexes(table: LogicalPlan, object ShowIndexes { def getOutputAttrs: Seq[Attribute] = Seq( AttributeReference("index_name", StringType, nullable = false)(), - AttributeReference("col_name", StringType, nullable = false)(), - AttributeReference("index_type", StringType, nullable = false)() + AttributeReference("index_type", StringType, nullable = false)(), + AttributeReference("col_name", StringType, nullable = false)() ) }
