Georg Traar
Georg Traar
> I think there is a workaround, could you try subscript_obj(js, 'x')? also leads to `"js['x']"` same as `"js"['x']`
`to_char(timestamp, text)` ist needed for Looker Integration (BI/Viz) Looker automatically generates the following query, when using timestamp fields within a Looker model: ```sql SELECT TO_CHAR(DATE_TRUNC('month', log."ts" ), 'YYYY-MM') AS "log.ts_month"...
@seut looks good :) 
> Unfortunately, the UDF is not used when executing queries from reporting tools, e.g. GoodData. I assume the issue is related to the function being registered under the `doc` schema,...
> If https://github.com/crate/crate/issues/16033 gets implemented, would you still think that AL ought to be able to impersonate users or see all jobs? I would probably tend to stick with PostgreSQL...
> Combine data from multiple remote sites into a global table on a central CrateDB cluster for easy query and analysis. By using a partitioned table where the partition column...
> The schema is fixed for all partitions of a partitioned table. How could I from 2 source clusters combine tables into one sink table then? Who defines the schema?...
> Schema changes on any side will be a problem, indeed. At least for the first iteration I'd suggest to forbid schema changes on partitioned tables which are publishing or...
I’m wondering if it’s necessary to **always** return the full message, or if just returning the error code would be sufficient in many cases. For programmatic handling of ingest errors,...
> To understand this right, the advantage this would have over an external cron system is that you don't have to put the credentials somewhere? - to have an integrated...