Uploaded image for project: 'Tajo (Retired)'
  1. Tajo (Retired)
  2. TAJO-2106

Fix minor typo in PostgreSQL Storage Handler documentation

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • None
    • 0.12.0
    • Documentation

    Description

      In the following documentation: http://tajo.apache.org/docs/current/storage_plugins/postgresql.html

      The storage-site.json is written as following:

      {
        "spaces": {
          "pgsql_db1": {
            "uri": "jdbc:postgresql://hostname:port/db1"
      
            "configs": {
              "mapped_database": "tajo_db1"
              "connection_properties": {
                "user":     "tajo",
                "password": "xxxx"
              }
            }
          }
        }
      }
      

      But it should be written as following:

      {
        "spaces": {
          "pgsql_db1": {
            "uri": "jdbc:postgresql://hostname:port/db1",
            "configs": {
              "mapped_database": "tajo_db1",
              "connection_properties": {
                "user":     "tajo",
                "password": "xxxx"
              }
            }
          }
        }
      }
      

      Attachments

        Activity

          People

            seian Byunghoon Lim
            blrunner JaeHwa Jung
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: