This is an automated email from the ASF dual-hosted git repository.
zhonghongsheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new f417d408b97 Add opengauss in e2e-operation.yml (#37825)
f417d408b97 is described below
commit f417d408b97c05a8ffdd15946372efa4171a8aca
Author: Hongsheng Zhong <[email protected]>
AuthorDate: Fri Jan 23 21:08:00 2026 +0800
Add opengauss in e2e-operation.yml (#37825)
* Add opengauss in e2e-operation.yml
* Update create-table-sql-generator.xml temporarily, to compatible with
opengauss/opengauss:3.1.0 default sql_compatibility is Oracle
---
.github/workflows/e2e-operation.yml | 11 +++++++++--
.../opengauss/create-table-sql-generator.xml | 2 +-
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/e2e-operation.yml
b/.github/workflows/e2e-operation.yml
index 8c17589ab84..78f77973442 100644
--- a/.github/workflows/e2e-operation.yml
+++ b/.github/workflows/e2e-operation.yml
@@ -74,14 +74,21 @@ jobs:
fail-fast: false
matrix:
operation: [ transaction, pipeline, showprocesslist ]
- image: [ { type: "e2e.docker.database.mysql.images", version:
"mysql:5.7" }, { type: "e2e.docker.database.postgresql.images", version:
"postgres:12-alpine" }, { type: "e2e.docker.database.mariadb.images", version:
"mariadb:11" } ]
+ image: [
+ { type: "e2e.docker.database.mysql.images", version: "mysql:5.7" },
+ { type: "e2e.docker.database.mariadb.images", version: "mariadb:11"
},
+ { type: "e2e.docker.database.postgresql.images", version:
"postgres:12-alpine" },
+ { type: "e2e.docker.database.opengauss.images", version:
"opengauss/opengauss:3.1.0" }
+ ]
exclude:
- operation: transaction
image: { type: "e2e.docker.database.mariadb.images", version:
"mariadb:11" }
+ - operation: showprocesslist
+ image: { type: "e2e.docker.database.mariadb.images", version:
"mariadb:11" }
- operation: showprocesslist
image: { type: "e2e.docker.database.postgresql.images", version:
"postgres:12-alpine" }
- operation: showprocesslist
- image: { type: "e2e.docker.database.mariadb.images", version:
"mariadb:11" }
+ image: { type: "e2e.docker.database.opengauss.images", version:
"opengauss/opengauss:3.1.0" }
steps:
- env:
changed_operations: ${{
needs.detect-changed-files.outputs.changed_operations }}
diff --git
a/test/e2e/operation/pipeline/src/test/resources/env/scenario/create-table-generator/opengauss/create-table-sql-generator.xml
b/test/e2e/operation/pipeline/src/test/resources/env/scenario/create-table-generator/opengauss/create-table-sql-generator.xml
index 44e5826baa1..96716a1354b 100644
---
a/test/e2e/operation/pipeline/src/test/resources/env/scenario/create-table-generator/opengauss/create-table-sql-generator.xml
+++
b/test/e2e/operation/pipeline/src/test/resources/env/scenario/create-table-generator/opengauss/create-table-sql-generator.xml
@@ -56,7 +56,7 @@
order_id integer NOT NULL,
user_id integer NOT NULL,
status character varying(45),
- creation_date date
+ creation_date timestamp(0) without time zone
)
WITH (orientation=row, compression=no)
</sql>