Skip to content

Commit

Permalink
feat(amazonq): support SQL conversions (aws#5775)
Browse files Browse the repository at this point in the history
QCT wants to support converting embedded SQL in Java apps.

Allow users to start a transformation for SQL conversions.

---

<!--- REMINDER: Ensure that your PR meets the guidelines in
CONTRIBUTING.md -->

License: I confirm that my contribution is made under the terms of the
Apache 2.0 license.

---------

Co-authored-by: David Hasani <[email protected]>
  • Loading branch information
dhasani23 and David Hasani committed Nov 5, 2024
1 parent 62053bf commit da53341
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/core/src/codewhisperer/models/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,17 @@ export class TransformByQState {

private metadataPathSQL: string = ''
private linesOfCodeSubmitted: number | undefined = undefined
private sourceDB: DB | undefined = undefined

private targetDB: DB | undefined = undefined

private schema: string = ''

private schemaOptions: Set<string> = new Set()

private sourceServerName: string = ''

private metadataPathSQL: string = ''

private planFilePath: string = ''
private summaryFilePath: string = ''
Expand Down

0 comments on commit da53341

Please sign in to comment.