You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by br...@apache.org on 2016/08/30 22:29:18 UTC

[03/17] drill git commit: 1.8 edit

1.8 edit


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/d2d9f432
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/d2d9f432
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/d2d9f432

Branch: refs/heads/gh-pages
Commit: d2d9f4323878bc3fbcbe0a1df447752b439a5825
Parents: 640b2c4
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Thu Aug 4 15:01:43 2016 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Thu Aug 4 15:01:43 2016 -0700

----------------------------------------------------------------------
 _docs/sql-reference/sql-commands/055-drop-table.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/d2d9f432/_docs/sql-reference/sql-commands/055-drop-table.md
----------------------------------------------------------------------
diff --git a/_docs/sql-reference/sql-commands/055-drop-table.md b/_docs/sql-reference/sql-commands/055-drop-table.md
index 35501b8..533a1e8 100644
--- a/_docs/sql-reference/sql-commands/055-drop-table.md
+++ b/_docs/sql-reference/sql-commands/055-drop-table.md
@@ -1,6 +1,6 @@
 ---
 title: "DROP TABLE"
-date: 2016-08-04 16:47:22 UTC
+date: 2016-08-04 22:01:44 UTC
 parent: "SQL Commands"
 ---
 
@@ -42,7 +42,7 @@ A unique directory or file name, optionally prefaced by a storage plugin name, s
 * When user impersonation is not enabled in Drill, Drill accesses the file system as the user running the Drillbit. This user is typically a super user who has permission to delete most files. In this scenario, use the DROP TABLE command with caution to avoid deleting critical files and directories.  
 
 ###Views
-* Views are independent of tables. If you drop a base table on which views were defined, the views become invalid, but users can still access them. You must explicitly drop any view that references a dropped table using the [DROP VIEW command]({{ site.baseurl }}/docs/drop-view/).  
+* Views are independent of tables. Views that reference dropped tables become invalid. You must explicitly drop any view that references a dropped table using the [DROP VIEW command]({{ site.baseurl }}/docs/drop-view/).  
 
 ###Concurrency 
 * Concurrency occurs when two processes try to access and/or change data at the same time. Currently, Drill does not have a mechanism in place, such as read locks on files, to address concurrency issues. For example, if one user runs a query that references a table that another user simultaneously issues the DROP TABLE command against, there is no mechanism in place to prevent a collision of the two processes. In such a scenario, Drill may return partial query results or a system error to the user running the query when the table is dropped.