This is an automated email from the ASF dual-hosted git repository.
sivabalan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new c0d77ffdb238 fix: show_index command (#14113)
c0d77ffdb238 is described below
commit c0d77ffdb23891b6ef7adc1ae068e70237acdd16
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)()
)
}