Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AD-303] Document and Review SQL error codes and customer facing error messages #102

Merged
merged 21 commits into from
Aug 24, 2021
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5734051
[AD-329] Initial refactoring to use project - tests still outdated
andiemontoyeah Aug 19, 2021
7b94cf7
Merge branch 'develop' into andiem/AD-329/addFields_to_project_refactor
andiemontoyeah Aug 20, 2021
24b1be0
Change some tests
andiemontoyeah Aug 20, 2021
2cde2e0
[AD-329] Remove _id field in project + update tests
andiemontoyeah Aug 23, 2021
b0d945d
[AD-329] Remove _id field in project + update tests
andiemontoyeah Aug 23, 2021
194839a
Address checkstyle
andiemontoyeah Aug 23, 2021
0109707
Commit Code Coverage Badge
Aug 23, 2021
fa3c968
Initial commit
mitchell-elholm Aug 23, 2021
52f319c
Fix for left side implementor
mitchell-elholm Aug 23, 2021
cc0ac58
Merge remote-tracking branch 'origin/andiem/AD-329/addFields_to_proje…
mitchell-elholm Aug 23, 2021
76638c5
Fixed tests
mitchell-elholm Aug 23, 2021
6d60043
Checkstyle
mitchell-elholm Aug 23, 2021
75332bc
Fixed test
mitchell-elholm Aug 23, 2021
d9d50d3
Merge branch 'develop' into mitchell/ad-331_change_join_op_order
mitchell-elholm Aug 23, 2021
364ddb4
Fixed unit tests
mitchell-elholm Aug 23, 2021
89f789e
Merge branch 'develop' into mitchell/ad-331_change_join_op_order
mitchell-elholm Aug 23, 2021
c2528e5
Fixed test
mitchell-elholm Aug 23, 2021
e189014
[AD-308] Document and Review SQL error codes and customer facing erro…
Aug 24, 2021
e950187
Merge branch 'develop' into brucei/ad-308/error_message_texts
Aug 24, 2021
3755506
[AD-308] Fix merge error.
Aug 24, 2021
78624b9
Commit Code Coverage Badge
birschick-bq Aug 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions common/src/main/resources/jdbc.properties
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ UNSUPPORTED_USER_DEFINED_TYPES=User-defined types are not supported.
UNSUPPORTED_VERSION_COLUMNS=Version columns are not supported.

### Error is unlikely, however if it occurs it may indicate issue in JDBC driver
CANNOT_UNWRAP=Cannot unwrap class to '%s. Please report issue to Amazon DocumentDB.'
CANNOT_RETRIEVE_COLUMN=Cannot retrieve the value for column: %s. Metadata or query result may be malformed. Please report issue to Amazon DocumentDB.
DELETE_SCHEMA_FAILED=Failed to delete database schema '%s'. Please report issue to Amazon DocumentDB.
DELETE_TABLE_SCHEMA_FAILED=Failed to delete one or more table schema. Please report issue to Amazon DocumentDB.
INVALID_COLUMN_LABEL=Unknown column label: %s. Please report issue to Amazon DocumentDB.
INVALID_STATE_SET_TABLE_FUNCTION=This method must only be called once after loading schema. Please report issue to Amazon DocumentDB.
UPSERT_SCHEMA_FAILED=Failed to insert or update one or more records for schema '%s'. Please report issue to Amazon DocumentDB.
CANNOT_UNWRAP=Cannot unwrap class to '%s. Please report the issue to AWS support.'
CANNOT_RETRIEVE_COLUMN=Cannot retrieve the value for column: %s. Metadata or query result may be malformed. Please report the issue to AWS support.
DELETE_SCHEMA_FAILED=Failed to delete database schema '%s'. Please report the issue to AWS support.
DELETE_TABLE_SCHEMA_FAILED=Failed to delete one or more table schema. Please report the issue to AWS support.
INVALID_COLUMN_LABEL=Unknown column label: %s. Please report the issue to AWS support.
INVALID_STATE_SET_TABLE_FUNCTION=This method must only be called once after loading schema. Please report the issue to AWS support.
UPSERT_SCHEMA_FAILED=Failed to insert or update one or more records for schema '%s'. Please report the issue to AWS support.

### Typical Error Messages (may occur in BI tools)
SQL_PARSE_ERROR=Unable to parse SQL '%s'.%n Reason: '%s'
Expand Down