Skip to content

Commit 51af29f

Browse files
authored
Merge branch 'master' into bugfix/invalid-timestamp-floor-year-unit
2 parents a3238ad + 8ff25d0 commit 51af29f

File tree

2,411 files changed

+485319
-269926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,411 files changed

+485319
-269926
lines changed

.dockerignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
!rust/cubestore/bin
1212
!rust/cubesql/package.json
1313

14+
# Ignoring builds for native from local machime to protect a problem with different architecture
15+
packages/cubejs-backend-native/index.node
16+
packages/cubejs-backend-native/native/
17+
# Caches
18+
packages/cubejs-backend-native/target
1419
packages/*/node_modules/
1520
packages/*/dist/
1621
packages/*/coverage/
22+
# Other
1723
packages/cubejs-server-core/playground/
18-
packages/cubejs-serverless
19-
packages/cubejs-serverless-aws
20-
packages/cubejs-serverless-google

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.rs]
13+
indent_size = 4
14+
15+
[rust/cubesql/cubesql/egraph-debug-template/**/*.{js,jsx,ts,tsx}]
16+
indent_size = 4

.github/ISSUE_TEMPLATE/sql_api_query_issue.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: SQL API Query Issue
33
about: Create a report to help us improve
44
title: ''
5-
labels: ''
5+
labels: 'api:sql'
66
assignees: ''
77

88
---
@@ -13,8 +13,11 @@ Search for `Failed SQL` log message.
1313
**Logical Plan**
1414
Search for `Can't rewrite plan` log message.
1515

16+
**Tool**
17+
Was thethe SQL query above generated by some BI tool or any other tool? Did you write it yourself?
18+
1619
**Version:**
17-
[e.g. 0.4.5]
20+
E.g., v1.1.0.
1821

1922
**Additional context**
2023
Add any other context about the problem here.

.github/actions/init-ci/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ runs:
77
using: "composite"
88
steps:
99
- name: Use Node.js ${{ inputs.node }}
10-
uses: actions/setup-node@v3
10+
uses: actions/setup-node@v4
1111
with:
1212
node-version: ${{ inputs.node }}
1313
- name: Cache node modules
14-
uses: actions/cache@v3
14+
uses: actions/cache@v4
1515
with:
1616
# npm cache files are stored in `~/.npm` on Linux/macOS
1717
path: ~/.npm

.github/actions/integration/clickhouse.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ set -eo pipefail
44
# Debug log for test containers
55
export DEBUG=testcontainers
66

7-
export TEST_CLICKHOUSE_VERSION=21.1.2
7+
export TEST_CLICKHOUSE_VERSION=23.11
88

99
echo "::group::Clickhouse ${TEST_CLICKHOUSE_VERSION}";
10-
docker pull yandex/clickhouse-server:${TEST_CLICKHOUSE_VERSION}
10+
docker pull clickhouse/clickhouse-server:${TEST_CLICKHOUSE_VERSION}
1111
yarn lerna run --concurrency 1 --stream --no-prefix integration:clickhouse
1212
echo "::endgroup::"
1313

14-
export TEST_CLICKHOUSE_VERSION=20.6
14+
export TEST_CLICKHOUSE_VERSION=22.8
1515

1616
echo "::group::Clickhouse ${TEST_CLICKHOUSE_VERSION}";
17-
docker pull yandex/clickhouse-server:${TEST_CLICKHOUSE_VERSION}
17+
docker pull clickhouse/clickhouse-server:${TEST_CLICKHOUSE_VERSION}
1818
yarn lerna run --concurrency 1 --stream --no-prefix integration:clickhouse
1919
echo "::endgroup::"
2020

21-
export TEST_CLICKHOUSE_VERSION=19
21+
export TEST_CLICKHOUSE_VERSION=21.8
2222

2323
echo "::group::Clickhouse ${TEST_CLICKHOUSE_VERSION}";
24-
docker pull yandex/clickhouse-server:${TEST_CLICKHOUSE_VERSION}
24+
docker pull clickhouse/clickhouse-server:${TEST_CLICKHOUSE_VERSION}
2525
yarn lerna run --concurrency 1 --stream --no-prefix integration:clickhouse
2626
echo "::endgroup::"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -eo pipefail
3+
4+
# Debug log for test containers
5+
export DEBUG=testcontainers
6+
7+
echo "::group::Dremio [cloud]"
8+
yarn lerna run --concurrency 1 --stream --no-prefix integration:dremio
9+
10+
echo "::endgroup::"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -eo pipefail
3+
4+
# Debug log for test containers
5+
export DEBUG=testcontainers
6+
7+
echo "::group::Firebolt [cloud]"
8+
yarn lerna run --concurrency 1 --stream --no-prefix integration:firebolt
9+
10+
echo "::endgroup::"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
set -eo pipefail
3+
4+
# Debug log for test containers
5+
export DEBUG=testcontainers
6+
7+
export TEST_VERTICA_VERSION=12.0.4-0
8+
9+
echo "::group::Vertica ${TEST_VERTICA_VERSION}"
10+
docker pull vertica/vertica-ce:${TEST_VERTICA_VERSION}
11+
yarn lerna run --concurrency 1 --stream --no-prefix integration:vertica
12+
echo "::endgroup::"

.github/actions/smoke.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,12 @@ echo "::endgroup::"
5555

5656
echo "::group::MongoBI"
5757
yarn lerna run --concurrency 1 --stream --no-prefix smoke:mongobi
58-
echo "::endgroup::"
58+
echo "::endgroup::"
59+
60+
echo "::group::Vertica"
61+
yarn lerna run --concurrency 1 --stream --no-prefix smoke:vertica
62+
echo "::endgroup::"
63+
64+
echo "::group::RBAC"
65+
yarn lerna run --concurrency 1 --stream --no-prefix smoke:rbac
66+
echo "::endgroup::"

.github/buildkitd.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[worker.oci]
2+
max-parallelism = 1

0 commit comments

Comments
 (0)