Igor Lukanin
Igor Lukanin
Hi @wlf061 👋 Let me add @ovr so he might provide his opinion as well. I think there are no strict guarantees on how many times a driver would be...
Hi @smileyboy2019 👋 You are referring to Apache Zeppelin, aren't you? As far as I see, it supports connecting to SQL data sources, e.g., Postgres (https://zeppelin.apache.org/docs/0.10.0/interpreter/jdbc.html#postgres). It means that you...
Hi @gregory-ng 👋 Could you please clarify your question? What is your use case, exactly? If you're looking into authorizing requests to Cube APIs (e.g., the SQL API), you can...
Hi @marcNY 👋 In BigQuery, you'd need to use the `APPROX_QUANTILES` function as described in BigQuery docs: https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#approx_quantiles Here's an example for calculating the 90th percentile: ``` SELECT APPROX_QUANTILES(x, 100)[OFFSET(90)]...
@mfreeman451 Thanks for the suggestion! Are you open to [contributing a driver](https://github.com/cube-js/cube/blob/master/CONTRIBUTING.md#contributing-database-drivers) for InfluxDB?
@mfreeman451 Thank you! In addition to contribution guidelines, you may use the existing drivers in [Cube's repository](https://github.com/cube-js/cube/tree/master/packages) as well as [third party drivers](https://cube.dev/docs/product/configuration/data-sources#third-party-drivers) for your reference.
Hi @nhannt201 👋 Let me explain how `notEquals` works. It applies the filter to dimension values _before they are truncated to selected granularity_. Please see the following example. Consider the...
Hi @HrisIord @alexindelicato-github 👋 Thanks for a very detailed question—really appreciate it! Also, sorry for a late reply. I've tried to reproduce this issue with the following data model. This...
Amazing! Thanks for collaborating on this one 😄
Hey @wasd171 👋 Thanks for reporting this! My understanding is that `extends` works as it should, the real issue is that `{cube.sql()}` doesn't work in YAML data models. You can...