-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DPE-2164] Expose Spark SQL in Spark Client snap (#91)
- Loading branch information
1 parent
d81049c
commit 7773432
Showing
6 changed files
with
163 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,9 @@ | |
.make_cache | ||
__pycache__ | ||
.coverage | ||
*.snap | ||
*.tar | ||
env/ | ||
.vscode/ | ||
derby.log | ||
metastore_db/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE DATABASE IF NOT EXISTS sparkdb; | ||
USE sparkdb; | ||
CREATE TABLE IF NOT EXISTS sparkdb.testTable (number Int, word String); | ||
INSERT INTO sparkdb.testTable VALUES (1, "foo"), (2, "bar"), (3, "grok"); | ||
SELECT CONCAT("Inserted Rows: ", COUNT(*)) FROM sparkdb.testTable; | ||
EXIT; |