You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by mi...@apache.org on 2023/04/10 06:31:19 UTC

[shardingsphere-on-cloud] branch feat-sschaos updated (cf4e840 -> 5850355)

This is an automated email from the ASF dual-hosted git repository.

miaoliyao pushed a change to branch feat-sschaos
in repository https://gitbox.apache.org/repos/asf/shardingsphere-on-cloud.git


 discard cf4e840  Add ShardingSphereChaos CRD and convert chaos to Chaos Mesh logic in Reconcile function (#286)
     add 91ccfa0  bugfix(pitr): fix storage nodes info struct error, add endtime to backup file, and fix backup mode ptrack did not work. (#288)
     add c02a11e  chore(ci): add golangci-lint and refactor according to the result (#294)
     add a849b35  chore(ci): add golangci-lint (#295)
     add fa0e6db  refactor(operator): refactor according to golangci-lint (#296)
     add c42769d  fix: fix proxy controller according to golangci-lint (#299)
     add 58c4ef6  chore: update varnamelen default to 1
     add cc00ee1  fix: fix updateSSProxyContainer
     add 94aa927  refactor: refactor getReadyProxyInstances
     add 2f8c661  refactor: refactor getReadyNodes
     add 069d310  fix: fix NewDeployment and set agent
     add 112c886  chore: update golangci-lint
     add eaed613  Merge pull request #300 from mlycore/update-lint
     add fdc99fd  bugfix(pitr): fix test case show no record (#297)
     add 0d3b1e9  feat: Implements EncryptionRule DistSQL Parser Visitor with AST (#301)
     add 091341b  Rebase main
     add 5850355  chore: update go mod

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (cf4e840)
            \
             N -- N -- N   refs/heads/feat-sschaos (5850355)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/pitr-golint.yml                  |    2 +-
 pitr/agent/.golangci.yml                           |  301 +-
 pitr/agent/Makefile                                |    4 +-
 pitr/agent/internal/cons/error.go                  |   10 +-
 pitr/agent/internal/handler/backup.go              |    6 +-
 .../internal/handler/middleware/http_header.go     |    2 +-
 pitr/agent/internal/handler/middleware/logger.go   |   12 +-
 pitr/agent/internal/handler/middleware/recovery.go |    1 +
 .../handler/middleware/uniform_err_resp.go         |    1 +
 pitr/agent/internal/handler/restore.go             |    8 +-
 pitr/agent/internal/handler/show.go                |   13 +-
 pitr/agent/internal/handler/view/backup.go         |   12 +-
 pitr/agent/internal/handler/view/restore.go        |   19 +-
 pitr/agent/internal/handler/view/show.go           |   39 +-
 pitr/agent/internal/pkg/model/backup.go            |    4 +-
 pitr/agent/internal/pkg/opengauss.go               |   22 +-
 pitr/agent/internal/pkg/opengauss_test.go          |    1 +
 pitr/agent/main.go                                 |   11 +-
 pitr/agent/pkg/cmds/cmd.go                         |    2 +-
 pitr/agent/pkg/gsutil/conn.go                      |    7 +-
 pitr/agent/pkg/logging/field.go                    |    6 +-
 pitr/agent/pkg/logging/log.go                      |    1 +
 pitr/agent/pkg/logging/zap_log.go                  |    1 +
 pitr/agent/pkg/strutil/rand_string.go              |   23 +-
 pitr/agent/pkg/syncutils/recover_func.go           |    4 +-
 pitr/cli/.golangci.yml                             |  311 ++
 pitr/cli/Makefile                                  |    4 +-
 pitr/cli/internal/cmd/backup.go                    |   18 +-
 pitr/cli/internal/cmd/restore.go                   |   10 +-
 pitr/cli/internal/cmd/restore_test.go              |    2 +-
 pitr/cli/internal/cmd/show.go                      |   12 +-
 pitr/cli/internal/cmd/show_test.go                 |    6 +-
 pitr/cli/internal/pkg/agent-server.go              |    9 +-
 pitr/cli/internal/pkg/agent-server_test.go         |   20 +-
 pitr/cli/internal/pkg/local-storage.go             |   17 +-
 pitr/cli/internal/pkg/mocks/local-storage.go       |    4 +-
 pitr/cli/internal/pkg/model/as_backup.go           |    4 +-
 pitr/cli/internal/pkg/model/as_restore.go          |    6 +-
 pitr/cli/internal/pkg/model/as_show.go             |   12 +-
 pitr/cli/internal/pkg/shardingsphere-proxy.go      |   19 +-
 pitr/cli/internal/pkg/xerr/err.go                  |   11 +-
 pitr/cli/main.go                                   |    2 +-
 pitr/cli/pkg/httputils/req.go                      |    3 +
 pitr/cli/pkg/logging/field.go                      |   11 -
 pitr/cli/pkg/stringutil/rand_string.go             |   24 +-
 pitr/cli/pkg/stringutil/rand_string_test.go        |    4 +-
 shardingsphere-operator/go.mod                     |   31 +-
 shardingsphere-operator/go.sum                     |  744 +---
 .../pkg/distsql/antlr4/encrypt/Alphabet.g4         |   45 +-
 .../pkg/distsql/antlr4/encrypt/BaseRule.g4         |   66 +-
 .../pkg/distsql/antlr4/encrypt/Keyword.g4          |  184 +
 .../pkg/distsql/antlr4/encrypt/Literals.g4         |   43 +-
 .../pkg/distsql/antlr4/encrypt/RDLStatement.g4     |  116 +
 .../pkg/distsql/antlr4/encrypt/RQLStatement.g4     |   24 +-
 .../pkg/distsql/antlr4/encrypt/Symbol.g4           |   61 +
 shardingsphere-operator/pkg/distsql/ast/rdl_ast.go |  163 +
 .../pkg/distsql/visitor/rdl_visitor.go             |  401 ++
 .../encrypt/rdlstatement_base_visitor.go           |  154 +
 .../visitor_parser/encrypt/rdlstatement_lexer.go   |  647 +++
 .../visitor_parser/encrypt/rdlstatement_parser.go  | 4651 ++++++++++++++++++++
 .../visitor_parser/encrypt/rdlstatement_visitor.go |  123 +
 61 files changed, 7476 insertions(+), 998 deletions(-)
 copy wasm/wasm-sharding-java/src/main/java/org/apache/shardingsphere/infra/algorithm/ShardingSphereAlgorithm.java => shardingsphere-operator/pkg/distsql/antlr4/encrypt/Alphabet.g4 (56%)
 copy wasm/wasm-sharding-java/src/main/java/org/apache/shardingsphere/sharding/route/engine/condition/value/ShardingConditionValue.java => shardingsphere-operator/pkg/distsql/antlr4/encrypt/BaseRule.g4 (58%)
 create mode 100644 shardingsphere-operator/pkg/distsql/antlr4/encrypt/Keyword.g4
 copy wasm/wasm-sharding-java/src/main/java/org/apache/shardingsphere/infra/datanode/DataNodeInfo.java => shardingsphere-operator/pkg/distsql/antlr4/encrypt/Literals.g4 (62%)
 create mode 100644 shardingsphere-operator/pkg/distsql/antlr4/encrypt/RDLStatement.g4
 copy wasm/wasm-sharding-js/src/lib.rs => shardingsphere-operator/pkg/distsql/antlr4/encrypt/RQLStatement.g4 (74%)
 create mode 100644 shardingsphere-operator/pkg/distsql/antlr4/encrypt/Symbol.g4
 create mode 100644 shardingsphere-operator/pkg/distsql/ast/rdl_ast.go
 create mode 100644 shardingsphere-operator/pkg/distsql/visitor/rdl_visitor.go
 create mode 100644 shardingsphere-operator/pkg/distsql/visitor_parser/encrypt/rdlstatement_base_visitor.go
 create mode 100644 shardingsphere-operator/pkg/distsql/visitor_parser/encrypt/rdlstatement_lexer.go
 create mode 100644 shardingsphere-operator/pkg/distsql/visitor_parser/encrypt/rdlstatement_parser.go
 create mode 100644 shardingsphere-operator/pkg/distsql/visitor_parser/encrypt/rdlstatement_visitor.go