aboutsummaryrefslogtreecommitdiff
path: root/repl/src
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-11-21 16:14:59 -0500
committerAndrew Or <andrewor14@gmail.com>2016-11-21 16:14:59 -0500
commitddd02f50bb7458410d65427321efc75da5e65224 (patch)
tree9658ae087306cd4643e7ffed98c40ba661533819 /repl/src
parent70176871ae10509f1a727a96e96b3da7762605b1 (diff)
downloadspark-ddd02f50bb7458410d65427321efc75da5e65224.tar.gz
spark-ddd02f50bb7458410d65427321efc75da5e65224.tar.bz2
spark-ddd02f50bb7458410d65427321efc75da5e65224.zip
[SPARK-18517][SQL] DROP TABLE IF EXISTS should not warn for non-existing tables
## What changes were proposed in this pull request? Currently, `DROP TABLE IF EXISTS` shows warning for non-existing tables. However, it had better be quiet for this case by definition of the command. **BEFORE** ```scala scala> sql("DROP TABLE IF EXISTS nonexist") 16/11/20 20:48:26 WARN DropTableCommand: org.apache.spark.sql.catalyst.analysis.NoSuchTableException: Table or view 'nonexist' not found in database 'default'; ``` **AFTER** ```scala scala> sql("DROP TABLE IF EXISTS nonexist") res0: org.apache.spark.sql.DataFrame = [] ``` ## How was this patch tested? Manual because this is related to the warning messages instead of exceptions. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #15953 from dongjoon-hyun/SPARK-18517.
Diffstat (limited to 'repl/src')
0 files changed, 0 insertions, 0 deletions