Browse Source

[Doc] Correct jdbc url example (#35513)

Adds a missing `?` to separate the url parameters.
Thiago Souza 7 years ago
parent
commit
98e075227b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/sql/endpoints/jdbc.asciidoc

+ 1 - 1
docs/reference/sql/endpoints/jdbc.asciidoc

@@ -129,7 +129,7 @@ To put all of it together, the following URL:
 
 ["source","text"]
 ----
-jdbc:es://http://server:3456/timezone=UTC&page.size=250
+jdbc:es://http://server:3456/?timezone=UTC&page.size=250
 ----
 
 Opens up a {es-sql} connection to `server` on port `3456`, setting the JDBC connection timezone to `UTC` and its pagesize to `250` entries.