Skip to content

Commit 0cef403

Browse files
vanshikaagupta22vikasrathee-cs
authored andcommitted
Bump up version - remove snapshot from 1.11.13
1 parent f1b0472 commit 0cef403

28 files changed

Lines changed: 86 additions & 63 deletions

File tree

amazon-redshift-plugin/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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>Amazon Redshift plugin</name>

aurora-mysql-plugin/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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>Aurora DB MySQL plugin</name>

aurora-postgresql-plugin/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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>Aurora DB PostgreSQL plugin</name>

cloudsql-mysql-plugin/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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>CloudSQL MySQL plugin</name>
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
errorMessageInvalidSourceDatabase=SQL error while getting query schema
1+
errorMessageInvalidSourceDatabase=SQL Error occurred, sqlState: '42000', errorCode: '1049'
22
errorMessageInvalidImportQuery=Import Query select must contain the string '$CONDITIONS'. if Number of Splits is not set\
33
\ to 1. Include '$CONDITIONS' in the Import Query
44
errorMessageCloudMySqlInvalidReferenceName=Invalid reference name
55
errorMessageBlankUsername=Username is required when password is given.
6-
errorMessageBlankPassword=SQL error while getting query schema
6+
errorMessageBlankPassword=SQL Error occurred, sqlState: '28000', errorCode: '1045', errorMessage: SQL Exception occurred: [Message='Access denied for user '
77
errorMessageInvalidFetchSize=Invalid fetch size. Fetch size must be a positive integer.
88
errorMessageBlankSplitBy=Split-By Field Name must be specified if Number of Splits is not set to 1. Specify the Split-by Field Name.
99
errorMessageInvalidNumberOfSplits=Invalid value for Number of Splits '0'. Must be at least 1. Specify a Number of Splits no less than 1.
@@ -12,10 +12,14 @@ errorMessageNumberOfSplits=Split-By Field Name must be specified if Number of Sp
1212
errorMessageBoundingQuery=Bounding Query must be specified if Number of Splits is not set to 1. Specify the Bounding Query.
1313
errorMessageInvalidSinkDatabase=Error encountered while configuring the stage: 'URLDecoder: Illegal hex characters in escape (%) pattern - For input string: "$^"'
1414
errorMessageInvalidTableName=Table 'Invalidtable' does not exist. Ensure table 'Invalidtable' is set correctly and
15-
errorMessageConnectionName=Connection Name must be in the format <PROJECT_ID>:<REGION>:<INSTANCE_NAME> to connect to a public CloudSQL PostgreSQL instance.
15+
errorMessageConnectionName=Connection Name must be in the format <PROJECT_ID>:<REGION>:<INSTANCE_NAME> to connect to a public CloudSQL MySQL instance.
1616
validationSuccessMessage=No errors found.
1717
validationErrorMessage=COUNT ERROR found
18-
errorLogsMessageInvalidTableName=Spark program 'phase-1' failed with error: Errors were encountered during validation. \
19-
Table
20-
errorLogsMessageInvalidCredentials =Spark program 'phase-1' failed with error: Errors were encountered during validation.
21-
errorLogsMessageInvalidBoundingQuery=Spark program 'phase-1' failed with error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'table' at line 1. Please check the system logs for more details.
18+
errorLogsMessageInvalidTableName=Spark program 'phase-1' failed with error: Stage 'CloudSQL MySQL' encountered : io.cdap.cdap.etl.api.validation.ValidationException: Errors were encountered during validation. \
19+
Table 'Table123' does not exist.. Please check the system logs for more details.
20+
errorLogsMessageInvalidCredentials=Spark program 'phase-1' failed with error: Stage 'CloudSQL MySQL' encountered : io.cdap.cdap.api.exception.ProgramFailureException: SQL Error occurred, sqlState: '28000', errorCode: '1045', errorMessage: SQL Exception occurred: [Message='Access denied for user 'testUser'
21+
errorLogsMessageInvalidBoundingQuery=Spark program 'phase-1' failed with error: Stage 'CloudSQL MySQL' encountered : java.io.IOException: You have an error in your SQL syntax; \
22+
check the manual that corresponds to your MySQL server version for the right syntax to use near 'table' at line 1. Please check the system logs for more details.
23+
errorMessageInvalidPassword=SQL Error occurred, sqlState: '28000', errorCode: '1045', errorMessage: SQL Exception occurred: [Message='Access denied for user '
24+
errorMessagePrivateConnectionName=Enter the internal IP address of the Compute Engine VM cloudsql proxy is running on, to connect to a private
25+
errorMessageWithBlankPassword=Error encountered while configuring the stage: 'SQL Error occurred, sqlState: '28000', errorCode: '1045', errorMessage: SQL Exception occurred: [Message='Access denied for user '

cloudsql-postgresql-plugin/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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>CloudSQL PostgreSQL plugin</name>

cloudsql-postgresql-plugin/src/e2e-test/features/source/RunTime.feature

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ Feature: CloudSQL-PostGreSQL Source - Run Time scenarios
188188
Then Close the Plugin Properties page
189189
Then Save the pipeline
190190
Then Preview and run the pipeline
191-
Then Wait till pipeline preview is in running state
191+
Then Wait till pipeline preview is in running state and check if any error occurs
192+
Then Open and capture pipeline preview logs
192193
Then Verify the preview run status of pipeline in the logs is "failed"
193194

194195
@CLOUDSQLPOSTGRESQL_SOURCE_TEST @CLOUDSQLPOSTGRESQL_TARGET_TEST

cloudsql-postgresql-plugin/src/e2e-test/resources/errorMessage.properties

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ errorMessageInvalidNumberOfSplits=Invalid value for Number of Splits '0'. Must b
77
errorMessageNumberOfSplitNotNumber=Unable to create config for batchsource CloudSQLPostgreSQL 'numSplits' is invalid: Value of \
88
field class io.cdap.plugin.db.config.AbstractDBSpecificSourceConfig.numSplits is expected to be a number.
99
errorMessageInvalidFetchSize=Invalid fetch size. Fetch size must be a positive integer.
10-
errorMessageInvalidSourceDatabase=SQL error while getting query schema: FATAL: database "invalidDatabase" does not exist
10+
errorMessageInvalidSourceDatabase=SQL Error occurred, sqlState: '3D000', errorCode: '0', errorMessage: SQL Exception occurred: [Message='FATAL: database "invalidDatabase" does not exist', SQLState='3D000', ErrorCode='0'].
1111
errorMessageInvalidImportQuery=Import Query select must contain the string '$CONDITIONS'. if Number of Splits is not set\
1212
\ to 1. Include '$CONDITIONS' in the Import Query
1313
errorMessageBlankUsername=Username is required when password is given.
14-
errorMessageBlankPassword=SQL error while getting query schema:
15-
errorMessageInvalidPassword=SQL error while getting query schema: FATAL: password authentication failed for user
14+
errorMessageBlankPassword=SQL Error occurred, sqlState: '99999', errorCode: '0', errorMessage: SQL Exception occurred: [Message='Something unusual has occurred to cause the driver to fail. Please report this exception.', SQLState='99999', ErrorCode='0'].
15+
errorMessageInvalidPassword=SQL Error occurred, sqlState: '28P01', errorCode: '0', errorMessage: SQL Exception occurred: [Message='FATAL: password authentication failed for user
1616
errorMessageInvalidSourceHost=SQL error while getting query schema: The connection attempt failed.
1717
errorMessageInvalidTableName=Table 'table' does not exist. Ensure table '"table"' is set correctly and that the
18-
errorMessageInvalidSinkDatabase=Exception while trying to validate schema of database table
19-
errorLogsMessageInvalidBoundingQuery=Spark program 'phase-1' failed with error: The column index is out of range: 1, \
20-
number of columns: 0.. Please check the system logs for more details.
18+
errorMessageInvalidSinkDatabase=Error encountered while configuring the stage: 'SQL Error occurred, sqlState: '3D000', errorCode: '0', errorMessage: SQL Exception occurred: [Message='FATAL: database "invalidDB" does not exist', SQLState='3D000', ErrorCode='0'].'
19+
errorLogsMessageInvalidBoundingQuery=The column index is out of range: 1, number of columns: 0..
2120
errorMessageConnectionName=Connection Name must be in the format <PROJECT_ID>:<REGION>:<INSTANCE_NAME> to connect to \
2221
a public CloudSQL PostgreSQL instance.
22+
errorMessagePrivateConnectionName=Enter the internal IP address of the Compute Engine VM cloudsql proxy is running on, \
23+
to connect to a private CloudSQL PostgreSQL instance.
24+
errorMessageWithBlankPassword=Error encountered while configuring the stage: 'SQL Error occurred, sqlState: '99999', errorCode: '0', errorMessage: SQL Exception occurred: [Message='Something unusual has occurred to cause the driver to fail. Please report this exception.', SQLState='99999', ErrorCode='0'].'
25+
errorMessageUpdateUpsertOperationName=Table key must be set if the operation is 'Update' or 'Upsert'.

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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>Database Commons</name>

db2-plugin/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-parent</artifactId>
2222
<groupId>io.cdap.plugin</groupId>
23-
<version>1.11.13-SNAPSHOT</version>
23+
<version>1.11.13</version>
2424
</parent>
2525

2626
<name>IBM DB2 plugin</name>

0 commit comments

Comments
 (0)