You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2020/04/07 16:26:01 UTC

[spark] branch master updated (6cf7336a -> a28ed86)

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git.


    from 6cf7336a [SPARK-30841][SQL][FOLLOW-UP] Change 'version' of spark.sql.execution.pandas.udf.buffer.size to 3.0.0
     add a28ed86  [SPARK-31113][SQL] Add SHOW VIEWS command

No new revisions were added by this update.

Summary of changes:
 docs/_data/menu-sql.yaml                           |   2 +
 docs/sql-ref-ansi-compliance.md                    |   1 +
 docs/sql-ref-syntax-aux-show-tables.md             |   2 +-
 docs/sql-ref-syntax-aux-show-views.md              | 121 +++++++++++++
 docs/sql-ref-syntax-aux-show.md                    |   1 +
 docs/sql-ref-syntax-ddl-alter-view.md              |   1 +
 docs/sql-ref-syntax-ddl-create-view.md             |   1 +
 docs/sql-ref-syntax-ddl-drop-view.md               |   1 +
 docs/sql-ref-syntax.md                             |   1 +
 .../apache/spark/sql/catalyst/parser/SqlBase.g4    |   7 +-
 .../spark/sql/catalyst/analysis/Analyzer.scala     |   2 +
 .../sql/catalyst/catalog/ExternalCatalog.scala     |   2 +
 .../catalog/ExternalCatalogWithListener.scala      |   4 +
 .../sql/catalyst/catalog/InMemoryCatalog.scala     |   6 +
 .../sql/catalyst/catalog/SessionCatalog.scala      |  19 ++
 .../spark/sql/catalyst/parser/AstBuilder.scala     |  10 +
 .../sql/catalyst/plans/logical/v2Commands.scala    |  16 ++
 .../spark/sql/catalyst/parser/DDLParserSuite.scala |  37 +++-
 .../parser/TableIdentifierParserSuite.scala        |   2 +
 .../catalyst/analysis/ResolveSessionCatalog.scala  |  14 ++
 .../apache/spark/sql/execution/HiveResult.scala    |   6 +-
 .../apache/spark/sql/execution/command/views.scala |  39 +++-
 .../resources/sql-tests/inputs/show-tables.sql     |   1 +
 .../test/resources/sql-tests/inputs/show-views.sql |  28 +++
 .../sql-tests/results/show-tables.sql.out          |  12 +-
 .../resources/sql-tests/results/show-views.sql.out | 201 +++++++++++++++++++++
 .../spark/sql/connector/DataSourceV2SQLSuite.scala |  17 ++
 .../spark/sql/hive/HiveExternalCatalog.scala       |   5 +
 .../spark/sql/hive/client/VersionsSuite.scala      |  10 +-
 .../sql/hive/execution/HiveCommandSuite.scala      |  46 +++++
 30 files changed, 605 insertions(+), 10 deletions(-)
 create mode 100644 docs/sql-ref-syntax-aux-show-views.md
 create mode 100644 sql/core/src/test/resources/sql-tests/inputs/show-views.sql
 create mode 100644 sql/core/src/test/resources/sql-tests/results/show-views.sql.out


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org