Matt Pulver
Matt Pulver
Hi @junrenge you may place the column name in double-quotes: `"POSITION" TEXT`.
Thank you for the PR. Few thoughts on this: * In general we prefer to stay away from configuration options that produce different results. This makes it harder to debug...
Thank you for the PR. Are these features being required/requested in a real project? If so a brief description to motivate these features would be useful. In general we don't...
> Can vouch for at least two customer requests for the quarter-related functions, which are of course common in business reporting. @mflaxman10 We support `QUARTER`: https://docs.omnisci.com/sql/data-manipulation-dml/functions-operators#supported-types Do you have any...
The call to `ResultSet::topPermutation()` from https://github.com/intel-ai/omniscidb/blob/ienkovich/tbb-parallel_sort/QueryEngine/ResultSet.cpp#L613 is already done in a multi-threaded context using all available cpu threads. Will calling `tbb:parallel_sort()` help or hurt performance in this case?
Thank you for this useful addition. I've attempted to transform the [BNF grammar for SQL-2003 ](https://github.com/ronsavage/SQL) into a compatible format and read it in with this branch. After around a...
Re: SQL grammar support Your recent commit f8baad2 added useful diagnostic info to identify malformed/undefined rules which existed in the above attachment `sql-2003-2.gbnf.gz`. This helped me to create an improved...
Yes I'm able to get through this by adding ``` awk '{print} /\(ONEAPI\.include_options\)/{print "\tsed -i \x27s# -isystem/usr/include$$##\x27 $@"}' \ makefile > makefile.tmp && mv makefile.tmp makefile ``` to the `prepare()`...
> you can pass False with an empty string `--logits_all ''` but a better way would be to add either `action='store_true'` or `action=argparse.BooleanOptionalAction` when adding argument When I add `--logits_all...
### Testing * Start the web server. * Go to http://localhost:8000/docs (adjust port as needed) * Open/click the `POST /v1/completions` panel. * Press the `Try it out` button. * Edit...