AM

Results 5 comments of AM

Getting the same error here using spark-sql: ``` spark-sql> show table extended in ice.snapshots like '*'; Error in query: SHOW TABLE EXTENDED is not supported for v2 tables.; ShowTableExtended *,...

The error seems to be thrown [here](https://github.com/apache/spark/blob/v3.3.0/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/CheckAnalysis.scala#L160-L162 ) so I wonder if the conversion (as per the comment in the code) should be done somewhere in iceberg. Maybe the catalog?

Looking at the full stack trace, iceberg not involved? ``` scala> lastException.printStackTrace org.apache.spark.sql.AnalysisException: SHOW TABLE EXTENDED is not supported for v2 tables.; ShowTableExtended *, [namespace#0, tableName#1, isTemporary#2, information#3] +- ResolvedNamespace...

No worries. I'm using Python 3.8.12. Can reproduce by importing the TSDF module: ``` pip install dbl-tempo Successfully installed dbl-tempo-0.1.23 ``` `from tempo import TSDF` There's been another version of...

Just looking at the IPython code, I don't think this can be easily sorted. Since IPython started following NEP 29, it dropped support for Python < 3.9 in version 8.13....