[
https://issues.apache.org/jira/browse/TAJO-2106?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15268189#comment-15268189
]
Byunghoon Lim commented on TAJO-2106:
-------------------------------------
Hi, [~abhisolanki]
I'm wondering if you are currently working on this issue.
If you are not currently working on it, I'd like to resolve instead of you.
> 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)