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 2015/06/30 02:34:50 UTC

[2/4] drill git commit: squash typo/fix link

squash typo/fix link

fix link


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

Branch: refs/heads/gh-pages
Commit: 59ef70e90a923d21661000510fcd4d893f32e48b
Parents: 124c980
Author: Kristine Hahn <kh...@maprtech.com>
Authored: Mon Jun 29 14:11:02 2015 -0700
Committer: Kristine Hahn <kh...@maprtech.com>
Committed: Mon Jun 29 14:16:47 2015 -0700

----------------------------------------------------------------------
 _docs/110-troubleshooting.md                      | 2 +-
 _docs/performance-tuning/020-partition-pruning.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/59ef70e9/_docs/110-troubleshooting.md
----------------------------------------------------------------------
diff --git a/_docs/110-troubleshooting.md b/_docs/110-troubleshooting.md
index 503a799..f6f0acc 100755
--- a/_docs/110-troubleshooting.md
+++ b/_docs/110-troubleshooting.md
@@ -28,7 +28,7 @@ Issue the following command to enable the verbose errors option:
 ## Troubleshooting Problems and Solutions
 If you have any of the following problems, try the suggested solution:
 
-* [Memory Issues]
+* [Memory Issues]({{site.baseurl}}/docs/troubleshooting/#memory-issues)
 * [Query Parsing Errors]({{site.baseurl}}/docs/troubleshooting/#query-parsing-errors)
 * [Query Parsing Errors Caused by Reserved Words]({{site.baseurl}}/docs/troubleshooting/#query-parsing-errors-caused-by-reserved-words)
 * [Table Not Found]({{site.baseurl}}/docs/troubleshooting/#table-not-found)

http://git-wip-us.apache.org/repos/asf/drill/blob/59ef70e9/_docs/performance-tuning/020-partition-pruning.md
----------------------------------------------------------------------
diff --git a/_docs/performance-tuning/020-partition-pruning.md b/_docs/performance-tuning/020-partition-pruning.md
index 18936c2..3dd6816 100755
--- a/_docs/performance-tuning/020-partition-pruning.md
+++ b/_docs/performance-tuning/020-partition-pruning.md
@@ -12,7 +12,7 @@ The query planner in Drill performs partition pruning by evaluating the filters.
 You can partition data manually or automatically to take advantage of partition pruning in Drill. In Drill 1.0 and earlier, you need to organize your data in such a way to take advantage of partition pruning. In Drill 1.1.0 and later, if the data source is Parquet, you can partition data automatically using CTAS--no data organization tasks required. 
 
 ## Automatic Partitioning
-Automatic partitioning in Drill 1.1.0 and later occurs when you write Parquet date using the [PARTITION BY]({{site.baseurl}}/docs/partition-by-clause/) clause in the CTAS statemebnt.
+Automatic partitioning in Drill 1.1.0 and later occurs when you write Parquet date using the [PARTITION BY]({{site.baseurl}}/docs/partition-by-clause/) clause in the CTAS statement.
 
 Automatic partitioning creates separate files, but not separate directories, for different partitions. Each file contains exactly one partition value, but there can be multiple files for the same partition value.