Jaehwa Jung created TAJO-2106:
---------------------------------
Summary: 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
Priority: Trivial
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)