master
Commits on Sep 21, 2021
Commits on Sep 20, 2021
-
fix(cubestore): invalid data after compaction of binary columns
All tables with HyperLogLog columns are affected. If the tables were large enough for compaction to run, the data in those columns is corrupted and cannot be recovered. Drop and rebuild those tables via CubeJS.
-
fix(cubestore): fix string-to-timestamp conversion
In some cases, milliseconds were parsed as nanoseconds. E.g. `1970-01-01T00:00:00.123` would parse as `123` nanosecnods instead of milliseconds.
-
-
fix(cubestore): fix Docker Hub repository name
We used to publish CubeStore image into the CubeJS repository.
-
Commits on Sep 17, 2021
-
fix(@cubejs-backend/schema-compiler): CubeValidator human readable er…
…ror messages (#3425) * fix(@cubejs-backend/schema-compiler): CubeValidator human readable error messages
-
fix(cubestore): improve diagnostics on invalid configurations
Hard failures now produce more meaningful error messages. And we also report some new warnings on common misconfigurations.
-
-
chore(docs): transform content headers to links (#3430)
* use ScollLink to h2 * try to add styles * wrap to h2 tag * different headers for side menu and content
-
-
docs(recipes): Joining Data from Multiple Data Sources (#3421)
* init new recipe * update sql generation script * WIP: need to create the index * [WIP] add indexes to pre-aggs Few ToDo in env and compose * remove unused measures * remove localDB * add githubCodeBlock to the page * add GitHubCodeBlocks * add parts for GitHubCodeBlock * fix GitHubCodeBlock * update the recipe page * update db host * user cubestore latest * format file * Update docs/content/Examples-Tutorials-Recipes/Joining-multiple-data-sources.md Co-authored-by: Ray Paik <[email protected]> * Update docs/content/Examples-Tutorials-Recipes/Joining-multiple-data-sources.md * Update docs/content/Examples-Tutorials-Recipes/Joining-multiple-data-sources.md Co-authored-by: Ray Paik <[email protected]> * Update docs/content/Examples-Tutorials-Recipes/Joining-multiple-data-sources.md * Update docs/content/Examples-Tutorials-Recipes/Joining-multiple-data-sources.md * Update docs/content/Examples-Tutorials-Recipes/Joining-multiple-data-sources.md * use ecom on demo-db-recipes.cube.dev * remove MDX-components * remvoe comma * update recipe list * update recipe list Co-authored-by: Ray Paik <[email protected]> Co-authored-by: Igor Lukanin <[email protected]>
-
Merge pull request #3439 from cube-js/fix-554e6e014f684792b20147bd2fd…
…2f3cb fix(@cubejs-backend/query-orchestrator): rollup only mode error message update
-
Commits on Sep 16, 2021
-
fix(query-orchestrator): Wrong passing data source for partition rang…
…e loader, debug API (#3426)
-
-
-
docs(recipes): Passing Dynamic Parameters in a Query (#3363)
* add recipe * add the article * Update docs/content/Examples-Tutorials-Recipes/Passing-Dynamic-Values-In-Query.md Co-authored-by: Ray Paik <[email protected]> * review fix * update recipe page link * rename the recipe folder * format file Co-authored-by: Ray Paik <[email protected]>
Commits on Sep 15, 2021
-
feat(cubestore): ILIKE operator
Case-insensitive version of LIKE.
-
fix(docs): formulas rendering in MDX (#3423)
* fix(docs): formulas in mdx * add styles and remove unused plugin * add styles and remove unused plugin * add custom styles * add mobile version adoptation * remove console.log
-
Commits on Sep 14, 2021
-
-
feat(cubestore): support reading of postgres-hll sketches
Default configuration should work, but there are some limitations. The log2m parameter is limited to 16 rather than 31. The precision parameter is limited to 6 rather than 8.
-
chore(cubestore): reading skecthes from HLL Storage Specification
See https://github.com/aggregateknowledge/hll-storage-spec for the binary format specification. While here, also update invalid constant (`MAX_BUCKETS`).
-
feat(@cubejs-client/react): useCubeMeta hook (#3050)
* feat(@cubejs-client/react): useCubeMeta hook * conflict fix
Commits on Sep 13, 2021
-
-
-
-
fix(cubejs-client-core): keep order of elements within tableColumns (#…
…3368) Prefix the key used to build the schema with an underscore to ensure the key is treated as a string and not as a numeric and thus as an array index.