You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by im...@apache.org on 2016/03/18 07:37:38 UTC

[05/36] incubator-asterixdb git commit: Fix ASTERIXDB-1043

Fix ASTERIXDB-1043

The example for the index-drop statement was wrong. It only used a
Qualified name instead of a DoubleQualified

Change-Id: I762eadd60a7b9e09be244d8eaeb673dd03eb2108
Reviewed-on: https://asterix-gerrit.ics.uci.edu/514
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Till Westmann <ti...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/commit/156babbe
Tree: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/tree/156babbe
Diff: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/diff/156babbe

Branch: refs/heads/master
Commit: 156babbe4af03777b62ae81e1cb2c4d147277a93
Parents: 5a78ca0
Author: Ian Maxon <im...@apache.org>
Authored: Mon Nov 23 16:41:26 2015 -0800
Committer: Ian Maxon <im...@apache.org>
Committed: Tue Nov 24 14:07:57 2015 -0800

----------------------------------------------------------------------
 asterix-doc/src/site/markdown/aql/manual.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/blob/156babbe/asterix-doc/src/site/markdown/aql/manual.md
----------------------------------------------------------------------
diff --git a/asterix-doc/src/site/markdown/aql/manual.md b/asterix-doc/src/site/markdown/aql/manual.md
index af45f76..883e285 100644
--- a/asterix-doc/src/site/markdown/aql/manual.md
+++ b/asterix-doc/src/site/markdown/aql/manual.md
@@ -793,7 +793,7 @@ The following examples illustrate uses of the drop statement.
 
     drop dataset FacebookUsers if exists;
 
-    drop index fbSenderLocIndex;
+    drop index FacebookUsers.fbSenderLocIndex;
 
     drop type FacebookUserType;