Repository: spark Updated Branches: refs/heads/branch-2.1 830ee1345 -> ff699332c
[WIP][SQL][DOC] Fix incorrect `code` tag ## What changes were proposed in this pull request? This PR is to fix incorrect `code` tag in `sql-programming-guide.md` ## How was this patch tested? Manually. Author: Weiqing Yang <[email protected]> Closes #15941 from weiqingy/fixtag. (cherry picked from commit f4a98e421e14434fddc3f9f1018a17124d660ef0) Signed-off-by: Sean Owen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ff699332 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ff699332 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/ff699332 Branch: refs/heads/branch-2.1 Commit: ff699332c113e21b942f5a62f475ae79ac6c0ee5 Parents: 830ee13 Author: Weiqing Yang <[email protected]> Authored: Sat Nov 26 15:41:37 2016 +0000 Committer: Sean Owen <[email protected]> Committed: Sat Nov 26 15:41:49 2016 +0000 ---------------------------------------------------------------------- docs/sql-programming-guide.md | 2 +- .../src/main/scala/org/apache/spark/sql/internal/SQLConf.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/ff699332/docs/sql-programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md index ba3e55f..3093d48 100644 --- a/docs/sql-programming-guide.md +++ b/docs/sql-programming-guide.md @@ -1089,7 +1089,7 @@ the following case-sensitive options: <tr> <td><code>isolationLevel</code></td> <td> - The transaction isolation level, which applies to current connection. It can be one of <code>NONE<code>, <code>READ_COMMITTED<code>, <code>READ_UNCOMMITTED<code>, <code>REPEATABLE_READ<code>, or <code>SERIALIZABLE<code>, corresponding to standard transaction isolation levels defined by JDBC's Connection object, with default of <code>READ_UNCOMMITTED<code>. This option applies only to writing. Please refer the documentation in <code>java.sql.Connection</code>. + The transaction isolation level, which applies to current connection. It can be one of <code>NONE</code>, <code>READ_COMMITTED</code>, <code>READ_UNCOMMITTED</code>, <code>REPEATABLE_READ</code>, or <code>SERIALIZABLE</code>, corresponding to standard transaction isolation levels defined by JDBC's Connection object, with default of <code>READ_UNCOMMITTED</code>. This option applies only to writing. Please refer the documentation in <code>java.sql.Connection</code>. </td> </tr> http://git-wip-us.apache.org/repos/asf/spark/blob/ff699332/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---------------------------------------------------------------------- diff --git a/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala b/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala index 7cca9db..5589805 100644 --- a/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala +++ b/sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala @@ -108,7 +108,7 @@ object SQLConf { .doc("Configures the maximum size in bytes for a table that will be broadcast to all worker " + "nodes when performing a join. By setting this value to -1 broadcasting can be disabled. " + "Note that currently statistics are only supported for Hive Metastore tables where the " + - "command<code>ANALYZE TABLE <tableName> COMPUTE STATISTICS noscan</code> has been " + + "command <code>ANALYZE TABLE <tableName> COMPUTE STATISTICS noscan</code> has been " + "run, and file-based data source tables where the statistics are computed directly on " + "the files of data.") .longConf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
