Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Michael Mior
Thanks for the fix Julian! I was going to suggest that maybe we want to have some check for this case but given that it's only happened this once AFAIK, I'd say let's just make a mental note for now. -- Michael Mior mm...@apache.org 2018-02-21 16:59 GMT-05:00 Julian Hyde : > I

Re: DISTINCT ON clause

2018-02-21 Thread Julian Hyde
Can you do some research, and see if any other databases do anything similar? Since Postgres isn’t standard, maybe we can improve upon it a bit. Also, do any databases have an aggregate function that takes an arbitrary value in the group, or asserts that all values are the same? We would use

Re: DISTINCT ON clause

2018-02-21 Thread Aman Sinha
It is a useful functionality, especially since the SELECT list can contain mix of primitive types and array or map type columns. I do see your point about the Postgres semantics of ORDER BY vs DISTINCT ON. I don't like the hidden semantics of MySQL either. Perhaps the compromise solution is to

Re: DISTINCT ON clause

2018-02-21 Thread Julian Hyde
I can see that it would be useful. But there are a couple of things about it that are messy. I think the syntax is a bit clunky because it uses parentheses; a query would be difficult to read if people would like multiple columns, expressions, and aliases. I also think the semantics are

DISTINCT ON clause

2018-02-21 Thread Aman Sinha
The DISTINCT 'ON' clause is not supported but I am trying to see if there are other people who have run into this. One of the use cases I have intuitively maps to something like this: SELECT DISTINCT *ON (a)*, b, c FROM T Here suppose 'a' is an INT and b, c are some complex types such as

Calcite-Master - Build # 211 - Still Failing

2018-02-21 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Master (build #211) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Master/211/ to view the results.

Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Julian Hyde
PS Here’s the “scratch” branch: https://github.com/julianhyde/calcite/tree/scratch > On Feb 21, 2018, at 12:10 PM, Michael Mior wrote: > > Ah, I see it's not a Safari issue as well. Things seem to be generating > fine

Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Julian Hyde
I’d rather not publish documentation for features that have not been released. I have been publishing the site based on my “scratch” branch (not very open of me — sorry!) which is currently a little ahead of 1.15 but 52 commits behind master. If you don’t mind waiting, I’ll re-publish when I

Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Shuyi Chen
If you open your browser and open this link https://calcite.apache.org/docs/reference.html, and scroll down, you should see the rendering of the entire page is messed-up. On Wed, Feb 21, 2018 at 5:57 AM, Michael Mior wrote: > Unfortunately I believe inline images are

Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Michael Mior
Ah, I see it's not a Safari issue as well. Things seem to be generating fine with Jekyll on my end so I can republish unless there's content currently in the repo that shouldn't be deployed. For example, the OpenGIS features that have been implemented are not currently published. -- Michael Mior

Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Julian Hyde
I see it. Here’s a screenshot: http://www.hydromatic.net/tmp/calcite-reference-screenshot.png It’s possible that it was broken, not by a change to the .md source, but when I upgraded jekyll recently and re-generated the .html

FINAL REMINDER: CFP for Apache EU Roadshow Closes 25th February

2018-02-21 Thread Sharan F
Hello Apache Supporters and Enthusiasts This is your FINAL reminder that the Call for Papers (CFP) for the Apache EU Roadshow is closing soon. Our Apache EU Roadshow will focus on Cloud, IoT, Apache Tomcat, Apache Http and will run from 13-14 June 2018 in Berlin. Note that the CFP deadline

Re: Updates on Benchmarking and Optimization Research for Calcite

2018-02-21 Thread Michael Mior
1. TPC-DS seems like a great starting point to me. SSB would also be a good addition. 2. You can set hive.cbo.enabled in your Hive configto false to turn off the optimizer. 3. Count me interested in general although I have limited time available in the immediate future. I'd be interested in

Re: Rendering of https://calcite.apache.org/docs/reference.html is broken on Safari and Chrome

2018-02-21 Thread Michael Mior
Unfortunately I believe inline images are stripped here. Could you post a link to an image hosted somewhere? -- Michael Mior mm...@apache.org 2018-02-21 0:24 GMT-05:00 Shuyi Chen : > Here is a screenshot. > > On Tue, Feb 20, 2018 at 5:18 PM, Michael Mior