You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ts...@apache.org on 2015/12/16 06:10:57 UTC

drill git commit: Minor blog post fixes

Repository: drill
Updated Branches:
  refs/heads/gh-pages ba928919c -> 355d7f5b5


Minor blog post fixes


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

Branch: refs/heads/gh-pages
Commit: 355d7f5b572c782b61d796fbe7490f16675a8b33
Parents: ba92891
Author: Tomer Shiran <ts...@gmail.com>
Authored: Tue Dec 15 21:10:54 2015 -0800
Committer: Tomer Shiran <ts...@gmail.com>
Committed: Tue Dec 15 21:10:54 2015 -0800

----------------------------------------------------------------------
 blog/_posts/2015-12-14-drill-1.4-released.md | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/355d7f5b/blog/_posts/2015-12-14-drill-1.4-released.md
----------------------------------------------------------------------
diff --git a/blog/_posts/2015-12-14-drill-1.4-released.md b/blog/_posts/2015-12-14-drill-1.4-released.md
index 15696b4..69a4830 100644
--- a/blog/_posts/2015-12-14-drill-1.4-released.md
+++ b/blog/_posts/2015-12-14-drill-1.4-released.md
@@ -12,7 +12,7 @@ JIRAs](https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332947&p
 Here's a list of highlights from this newest version of Drill:
 
 ## Select With Options
-Queries that change storage plugin configuration options can now be written. For instance to query the file `CO.dat`, the following can be used:
+Queries that change storage plugin configuration options can now be written. For instance, to query the file `CO.dat`, the following can be used:
 
 ```
 SELECT * FROM TABLE(dfs.`/path/to/CO.dat`(type => 'text'));
@@ -26,8 +26,7 @@ passing an `extractHeader => true` argument. We can also use a pipe symbol, '|',
 SELECT * FROM TABLE(dfs.`/path/to/CO.dat`(type => 'text', fieldDelimiter => '|', extractHeader => true));
 ```
 
-Additionally, `lineDelimiter' can be used to indicate a deliminter for new lines, such as the double pipe, '||', symbol 
-in this example:
+Additionally, `lineDelimiter` can be used to indicate a deliminter for new lines, such as the double pipe, '||', symbol in this example:
 
 ```
 SELECT * FROM TABLE(dfs.`/path/to/CO.dat`(type => 'text', lineDelimiter => '||', fieldDelimiter => '|'));
@@ -35,19 +34,18 @@ SELECT * FROM TABLE(dfs.`/path/to/CO.dat`(type => 'text', lineDelimiter => '||',
 
 ## Improved Behavior For CSV Header Parsing
 When header parsing is enabled, queries to CSV files no longer raise an exception if the indicated column does not 
-exist. Instead, Drill now returns 'null' values for that column.
+exist. Instead, Drill now returns `null` values for that column.
 
 ## JSON Formatting
 For more compact results, Drill's default behavior of pretty-printing JSON can now be changed by setting the variable 
-`store.json.writer.uglify` to 'true.' As in:
+`store.json.writer.uglify` to `true`. As in:
 
 ```
 ALTER SESSION SET store.json.writer.uglify = true;
 ```
 
 ## Better Logging
-SQL query text is now logged to the drillbit.log file.
+SQL query text is now logged to the `drillbit.log` file.
 
 ## Other Improvements
-This version also features: schema change compatible sorting, better Apache Hive support, and more efficient caching 
-for Parquet file metadata.
+This version also features schema change compatible sorting, better Apache Hive support, and more efficient caching for Parquet file metadata.