Skip to content

Commit 51d4bde

Browse files
authored
Removed 2.14 from test matrix
1 parent 0a7746a commit 51d4bde

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/mysql-migtests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
run-mysql-migration-tests:
1111
strategy:
1212
matrix:
13-
version: [2.14.13.0-b13,2.19.2.0-b121,2.16.7.0-b59,2.18.3.0-b75]
13+
version: [2.19.2.0-b121,2.16.7.0-b59,2.18.3.0-b75]
1414
BETA_FAST_DATA_EXPORT: [0, 1]
1515
env:
1616
BETA_FAST_DATA_EXPORT: ${{ matrix.BETA_FAST_DATA_EXPORT }}

.github/workflows/pg-migtests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
run-pg-migration-tests:
1111
strategy:
1212
matrix:
13-
version: [2.14.13.0-b13,2.19.2.0-b121,2.16.7.0-b59,2.18.3.0-b75]
13+
version: [2.19.2.0-b121,2.16.7.0-b59,2.18.3.0-b75]
1414
BETA_FAST_DATA_EXPORT: [0, 1]
1515
env:
1616
BETA_FAST_DATA_EXPORT: ${{ matrix.BETA_FAST_DATA_EXPORT }}

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ YugabyteDB Voyager manages the entire lifecycle of a database migration, includi
1111

1212
<img src="docs/voyager_architecture.png" align="center" alt="YugabyteDB Voyager Architecture"/>
1313

14-
You can migrate data to any one of the three YugabyteDB products (Stable versions 2.14.5.0 and later, and preview versions 2.17.0.0 and later). The following cluster types are supported: [Local YugabyteDB clusters](https://docs.yugabyte.com/preview/quick-start/), [YugabyteDB Anywhere](https://docs.yugabyte.com/preview/yugabyte-platform/create-deployments/), [YugabyteDB Managed](https://docs.yugabyte.com/preview/yugabyte-cloud/cloud-basics/)
14+
You can migrate data to any one of the three YugabyteDB products (2.16.0.0 and later). The following cluster types are supported: [Local YugabyteDB clusters](https://docs.yugabyte.com/preview/quick-start/), [YugabyteDB Anywhere](https://docs.yugabyte.com/preview/yugabyte-platform/create-deployments/), [YugabyteDB Managed](https://docs.yugabyte.com/preview/yugabyte-cloud/cloud-basics/)
1515

1616
* [Highlights](#highlights)
1717
* [Prerequisites and Install](#prerequisites-and-install)
@@ -23,7 +23,7 @@ You can migrate data to any one of the three YugabyteDB products (Stable version
2323

2424
# Highlights
2525
- Free and completely open source
26-
- Identical steps and unfied experience for all sources and destinations
26+
- Identical steps and unified experience for all sources and destinations
2727
- Optimized for distributed databases
2828
- Chunks the source files
2929
- Scales and auto tunes based on cluster size
@@ -38,9 +38,9 @@ You can migrate data to any one of the three YugabyteDB products (Stable version
3838
- Direct data import from CSV and text files
3939

4040
# Prerequisites and Install
41-
For prerequisits like supported operating system, machine requirements, please refer to the [Prerequisites section](https://docs.yugabyte.com/preview/migrate/install-yb-voyager/#prerequisites)
41+
For prerequisites like supported operating system, machine requirements, please refer to the [Prerequisites section](https://docs.yugabyte.com/preview/migrate/install-yb-voyager/#prerequisites)
4242

43-
Once the prerequisites are satisifed, you can install yb-voyager on a machine with operating systems like RHEL, Ubuntu, macOS, or even in Airgapped, or Docker enviornment or build using source. For detailed instructions, refer [Install section](https://docs.yugabyte.com/preview/migrate/install-yb-voyager/#install-yb-voyager)
43+
Once the prerequisites are satisifed, you can install yb-voyager on a machine with operating systems like RHEL, Ubuntu, macOS, or even in Airgapped, or Docker environment or build using source. For detailed instructions, refer [Install section](https://docs.yugabyte.com/preview/migrate/install-yb-voyager/#install-yb-voyager)
4444

4545
# Migration Steps
4646

migtests/tests/oracle/sequences/sequences_schema_data.sql

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
drop table identity_demo_generated_always;
22

33
CREATE TABLE identity_demo_generated_always (
4-
id NUMBER GENERATED ALWAYS AS IDENTITY,
4+
id NUMBER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
55
description VARCHAR2(100) NOT NULL
66
);
77

@@ -17,7 +17,7 @@ select * from identity_demo_generated_always;
1717
drop table identity_demo_generated_by_def;
1818

1919
CREATE TABLE identity_demo_generated_by_def (
20-
id NUMBER GENERATED BY DEFAULT AS IDENTITY,
20+
id NUMBER GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
2121
description VARCHAR2(100) not null
2222
);
2323

@@ -35,7 +35,7 @@ select * from identity_demo_generated_by_def;
3535
DROP TABLE identity_demo_with_null;
3636

3737
CREATE TABLE identity_demo_with_null (
38-
id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY,
38+
id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY PRIMARY KEY,
3939
description VARCHAR2(100) not null
4040
);
4141

@@ -50,7 +50,7 @@ select * from identity_demo_with_null;
5050
drop table identity_demo_generated_always_start_with;
5151

5252
CREATE TABLE identity_demo_generated_always_start_with (
53-
id NUMBER GENERATED ALWAYS AS IDENTITY start with 101,
53+
id NUMBER GENERATED ALWAYS AS IDENTITY start with 101 PRIMARY KEY,
5454
description VARCHAR2(100) NOT NULL
5555
);
5656

@@ -62,7 +62,7 @@ select * from identity_demo_generated_always_start_with;
6262
drop table identity_demo_generated_by_def_start_with;
6363

6464
CREATE TABLE identity_demo_generated_by_def_start_with (
65-
id NUMBER GENERATED BY DEFAULT AS IDENTITY start with 101,
65+
id NUMBER GENERATED BY DEFAULT AS IDENTITY start with 101 PRIMARY KEY,
6666
description VARCHAR2(100) not null
6767
);
6868

@@ -80,7 +80,7 @@ select * from identity_demo_generated_by_def_start_with;
8080
drop table identity_demo_generated_by_def_inc_by;
8181

8282
CREATE TABLE identity_demo_generated_by_def_inc_by (
83-
id NUMBER GENERATED BY DEFAULT AS IDENTITY increment by 101,
83+
id NUMBER GENERATED BY DEFAULT AS IDENTITY increment by 101 PRIMARY KEY,
8484
description VARCHAR2(100) not null
8585
);
8686

@@ -98,7 +98,7 @@ select * from identity_demo_generated_by_def_inc_by;
9898
drop table identity_demo_generated_by_def_st_with_inc_by;
9999

100100
CREATE TABLE identity_demo_generated_by_def_st_with_inc_by (
101-
id NUMBER GENERATED BY DEFAULT AS IDENTITY start with 5 increment by 101,
101+
id NUMBER GENERATED BY DEFAULT AS IDENTITY start with 5 increment by 101 PRIMARY KEY,
102102
description VARCHAR2(100) not null
103103
);
104104

0 commit comments

Comments
 (0)