Skip to content

Commit f5c0538

Browse files
authored
Merge pull request #88 from shiva-cirus/release/1.5
Release/1.5
2 parents eaf3260 + 12fd1ef commit f5c0538

Some content is hidden

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

49 files changed

+2653
-31
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SAP HANA requires that password for DB is provided through url.
2727
Convenience script ```docker-compose/db-plugins-env/saphana-password-server.sh```
2828
provided for this purpose.
2929

30-
Netezza requires VMware Player for running Netezza emulator.
30+
Netezza and Teradata require VMware Player for running emulator.
3131

3232
* [Install Docker Compose](https://docs.docker.com/compose/install/)
3333
* Build local docker images
@@ -66,6 +66,11 @@ grant all on *.* to 'root'@'%' identified by 'root' with grant option;
6666
* [Install and start Netezza emulator](http://dwgeek.com/install-vmware-player-netezza-emulator.html/)
6767
* Create database `mydb` in Netezza emulator
6868

69+
70+
* [Install and start Teradata Express](https://downloads.teradata.com/download/files/7671/200652/1/B035-5948-018K.pdf)
71+
* Create database `mydb` in Teradata Express
72+
* Create user `test` with password `test` in Teradata Express
73+
6974
### Properties
7075
#### MySQL
7176
* **mysql.host** - Server host. Default: localhost.
@@ -110,6 +115,12 @@ grant all on *.* to 'root'@'%' identified by 'root' with grant option;
110115
* **memsql.database** - Server namespace for test databases. Default: mydb.
111116
* **memsql.username** - Server username. Default: root.
112117
* **memsql.password** - Server password. Default: root.
118+
#### Teradata
119+
* **teradata.host** - Server host. Default: localhost.
120+
* **teradata.port** - Server port. Default: 1025.
121+
* **teradata.database** - Server namespace for test databases. Default: mydb.
122+
* **teradata.username** - Server username. Default: test.
123+
* **teradata.password** - Server password. Default: test.
113124
#### Aurora MySQL
114125
* **auroraMysql.clusterEndpoint** - Cluster endpoint.
115126
* **auroraMysql.port** - Server port.

aurora-mysql-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>Aurora DB MySQL plugin</name>
2727
<artifactId>aurora-mysql-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

aurora-postgresql-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>Aurora DB PostgreSQL plugin</name>
2727
<artifactId>aurora-postgresql-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

cloudsql-mysql-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>CloudSQL MySQL plugin</name>
2727
<artifactId>cloudsql-mysql-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

cloudsql-postgresql-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>CloudSQL PostgreSQL plugin</name>
2727
<artifactId>cloudsql-postgresql-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>io.cdap.plugin</groupId>
4848
<artifactId>postgresql-plugin</artifactId>
49-
<version>1.5.0-SNAPSHOT</version>
49+
<version>1.5.0</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>io.cdap.cdap</groupId>

database-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>Database Commons</name>

db2-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>IBM DB2 plugin</name>
2727
<artifactId>db2-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

generic-database-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>Generic database plugin</name>
2727
<artifactId>generic-database-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

mariadb-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>Maria DB plugin</name>
2727
<artifactId>mariadb-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

memsql-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<parent>
2121
<artifactId>database-plugins</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.5.0-SNAPSHOT</version>
23+
<version>1.5.0</version>
2424
</parent>
2525

2626
<name>Memsql plugin</name>
2727
<artifactId>memsql-plugin</artifactId>
28-
<version>1.5.0-SNAPSHOT</version>
28+
<version>1.5.0</version>
2929
<modelVersion>4.0.0</modelVersion>
3030

3131
<dependencies>

0 commit comments

Comments
 (0)