You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/01/31 23:33:52 UTC

[iceberg-docs] branch main updated: spark-sql -> sql (#25)

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

blue pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-docs.git


The following commit(s) were added to refs/heads/main by this push:
     new 2e729aa  spark-sql -> sql (#25)
2e729aa is described below

commit 2e729aa9924bc8a6f8cdd035f59fbf45bbcccfbe
Author: Samuel Redai <43...@users.noreply.github.com>
AuthorDate: Mon Jan 31 15:32:43 2022 -0800

    spark-sql -> sql (#25)
---
 landing-page/content/services/data-compaction.html  | 2 +-
 landing-page/content/services/expressive-sql.html   | 4 ++--
 landing-page/content/services/schema-evolution.html | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/landing-page/content/services/data-compaction.html b/landing-page/content/services/data-compaction.html
index 70ff2a1..69d66cf 100644
--- a/landing-page/content/services/data-compaction.html
+++ b/landing-page/content/services/data-compaction.html
@@ -22,5 +22,5 @@ weight: 500
  - limitations under the License.
  -->
  <div id="termynal-data-compaction" data-termynal data-ty-startDelay="8000" data-ty-typeDelay="20" data-ty-lineDelay="500">
-    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="spark-sql>">CALL system.rewrite_data_files("nyc.taxis");</span>
+    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="sql>">CALL system.rewrite_data_files("nyc.taxis");</span>
 </div>
\ No newline at end of file
diff --git a/landing-page/content/services/expressive-sql.html b/landing-page/content/services/expressive-sql.html
index ddd262f..d0196b3 100644
--- a/landing-page/content/services/expressive-sql.html
+++ b/landing-page/content/services/expressive-sql.html
@@ -23,10 +23,10 @@ weight: 100
  - limitations under the License.
  -->
  <div id="termynal-expressive-sql" data-termynal data-ty-startDelay="2000" data-ty-typeDelay="20" data-ty-lineDelay="500">
-    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="spark-sql>">MERGE INTO prod.nyc.taxis pt</span>
+    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="sql>">MERGE INTO prod.nyc.taxis pt</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">USING (SELECT * FROM staging.nyc.taxis) st</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">ON pt.id = st.id</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">WHEN NOT MATCHED THEN INSERT *;</span>
     <span data-ty>Done!</span>
-    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="spark-sql>"></span>
+    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="sql>"></span>
 </div>
\ No newline at end of file
diff --git a/landing-page/content/services/schema-evolution.html b/landing-page/content/services/schema-evolution.html
index e7bac9b..4c32985 100644
--- a/landing-page/content/services/schema-evolution.html
+++ b/landing-page/content/services/schema-evolution.html
@@ -23,15 +23,15 @@ weight: 200
  - limitations under the License.
  -->
 <div id="termynal" data-termynal data-ty-startDelay="4000" data-ty-typeDelay="20" data-ty-lineDelay="500">
-    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="spark-sql>">ALTER TABLE taxis</span>
+    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="sql>">ALTER TABLE taxis</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">ALTER COLUMN trip_distance</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="" data-ty-delay="2500">TYPE double;</span>
     <span data-ty>Done!</span>
-    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="spark-sql>">ALTER TABLE taxis</span>
+    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="sql>">ALTER TABLE taxis</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">ALTER COLUMN trip_distance</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">AFTER fare;</span>
     <span data-ty>Done!</span>
-    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="spark-sql>">ALTER TABLE taxis</span>
+    <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="sql>">ALTER TABLE taxis</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">RENAME COLUMN trip_distance</span>
     <span data-ty="input" data-ty-cursor="▋" data-ty-prompt="">TO distance;</span>
     <span data-ty>Done!</span>