-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MINOR: [Ruby] Fixed credential information of ClickHouse API #13999
Conversation
Here is new getting-started playground page. - https://clickhouse.com/docs/ru/getting-started/playground/
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on JIRA? https://issues.apache.org/jira/browse/ARROW Opening JIRAs ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename pull request title in the following format?
or
See also: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Good catch!
Benchmark runs are scheduled for baseline = 9f2a4b0 and contender = 15d6959. 15d6959 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…13999) ## What I did - Fixed credential information of ClickHouse API at README.md - Latest Information was changed - https://clickhouse.com/docs/ru/getting-started/playground/ ## What I checked - I ran the command in my local environment. ```ruby # red-arrow.rb params = { query: "SELECT WatchID as watch FROM hits LIMIT 10 FORMAT Arrow", user: "play", password: "", database: "default" } uri = URI('https://play.clickhouse.com:443/') uri.query = URI.encode_www_form(params) resp = Net::HTTP.get(uri) table = Arrow::Table.load(Arrow::Buffer.new(resp)) p table ``` ```console % ruby red-arrow.rb #<Arrow::Table:0x11f8e0c18 ptr=0x11f6dced0> watch 0 8120543446287442873 1 9110818468285196899 2 8156744413230856864 3 5206346422301499756 4 6308646140879811077 5 6635790769678439148 6 4894690465724379622 7 6864353419233967042 8 8740403056911509777 9 8924809397503602651 ``` Authored-by: otegami <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…13999) ## What I did - Fixed credential information of ClickHouse API at README.md - Latest Information was changed - https://clickhouse.com/docs/ru/getting-started/playground/ ## What I checked - I ran the command in my local environment. ```ruby # red-arrow.rb params = { query: "SELECT WatchID as watch FROM hits LIMIT 10 FORMAT Arrow", user: "play", password: "", database: "default" } uri = URI('https://play.clickhouse.com:443/') uri.query = URI.encode_www_form(params) resp = Net::HTTP.get(uri) table = Arrow::Table.load(Arrow::Buffer.new(resp)) p table ``` ```console % ruby red-arrow.rb #<Arrow::Table:0x11f8e0c18 ptr=0x11f6dced0> watch 0 8120543446287442873 1 9110818468285196899 2 8156744413230856864 3 5206346422301499756 4 6308646140879811077 5 6635790769678439148 6 4894690465724379622 7 6864353419233967042 8 8740403056911509777 9 8924809397503602651 ``` Authored-by: otegami <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…13999) ## What I did - Fixed credential information of ClickHouse API at README.md - Latest Information was changed - https://clickhouse.com/docs/ru/getting-started/playground/ ## What I checked - I ran the command in my local environment. ```ruby # red-arrow.rb params = { query: "SELECT WatchID as watch FROM hits LIMIT 10 FORMAT Arrow", user: "play", password: "", database: "default" } uri = URI('https://play.clickhouse.com:443/') uri.query = URI.encode_www_form(params) resp = Net::HTTP.get(uri) table = Arrow::Table.load(Arrow::Buffer.new(resp)) p table ``` ```console % ruby red-arrow.rb #<Arrow::Table:0x11f8e0c18 ptr=0x11f6dced0> watch 0 8120543446287442873 1 9110818468285196899 2 8156744413230856864 3 5206346422301499756 4 6308646140879811077 5 6635790769678439148 6 4894690465724379622 7 6864353419233967042 8 8740403056911509777 9 8924809397503602651 ``` Authored-by: otegami <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
What I did
What I checked