You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Abhishek Solanki (JIRA)" <ji...@apache.org> on 2016/04/04 07:06:25 UTC

[jira] [Assigned] (TAJO-2106) Fix minor typo in PostgreSQL Storage Handler documentation

     [ https://issues.apache.org/jira/browse/TAJO-2106?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Abhishek Solanki reassigned TAJO-2106:
--------------------------------------

    Assignee: Abhishek Solanki

> 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: Abhishek Solanki
>            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)