Skip to content

Commit

Permalink
fix(amazonq): allow postgresql as target DB #6259
Browse files Browse the repository at this point in the history
## Problem
`RDS_POSTGRESQL` should be spelled as `POSTGRESQL`

## Solution
Fix spelling
  • Loading branch information
dhasani23 authored Dec 17, 2024
1 parent 7084800 commit b085dd9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "Bug Fix",
"description": "Amazon Q Code Transformation: allow POSTGRESQL as target DB for SQL conversions"
}
2 changes: 1 addition & 1 deletion packages/core/src/codewhisperer/models/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ export enum JDKVersion {

export enum DB {
ORACLE = 'ORACLE',
RDS_POSTGRESQL = 'RDS_POSTGRESQL',
RDS_POSTGRESQL = 'POSTGRESQL',
AURORA_POSTGRESQL = 'AURORA_POSTGRESQL',
OTHER = 'OTHER',
}
Expand Down

0 comments on commit b085dd9

Please sign in to comment.