[
https://issues.apache.org/jira/browse/TAJO-2106?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15270162#comment-15270162
]
ASF GitHub Bot commented on TAJO-2106:
--------------------------------------
GitHub user seian opened a pull request:
https://github.com/apache/tajo/pull/1011
TAJO-2106: Fix minor typo in PostgreSQL Storage Handler documentation
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/seian/tajo TAJO-2106
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tajo/pull/1011.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #1011
----
commit e559dcfc4c7e06652f67898698391bd9f743e8f8
Author: Byunghoon Lim <[email protected]>
Date: 2016-05-04T06:03:09Z
Fix minor typo in PostgreSQL Storage Handler documentation
----
> Fix minor typo in PostgreSQL Storage Handler documentation
> ----------------------------------------------------------
>
> Key: TAJO-2106
> URL: https://issues.apache.org/jira/browse/TAJO-2106
> Project: Tajo
> Issue Type: Bug
> Components: Documentation
> Reporter: Jaehwa Jung
> Assignee: Byunghoon Lim
> Priority: Trivial
> Labels: newbie
>
> In the following documentation:
> http://tajo.apache.org/docs/current/storage_plugins/postgresql.html
> The storage-site.json is written as following:
> {code:xml}
> {
> "spaces": {
> "pgsql_db1": {
> "uri": "jdbc:postgresql://hostname:port/db1"
> "configs": {
> "mapped_database": "tajo_db1"
> "connection_properties": {
> "user": "tajo",
> "password": "xxxx"
> }
> }
> }
> }
> }
> {code}
> But it should be written as following:
> {code:xml}
> {
> "spaces": {
> "pgsql_db1": {
> "uri": "jdbc:postgresql://hostname:port/db1",
> "configs": {
> "mapped_database": "tajo_db1",
> "connection_properties": {
> "user": "tajo",
> "password": "xxxx"
> }
> }
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)