Skip to content

Commit 99099c4

Browse files
dhasani23David Hasani
andcommitted
feat(amazonq): support SQL conversions (#5775)
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]>
1 parent 4734bde commit 99099c4

File tree

1 file changed

+11
-0
lines changed
  • packages/core/src/codewhisperer/models

1 file changed

+11
-0
lines changed

packages/core/src/codewhisperer/models/model.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,17 @@ export class TransformByQState {
415415

416416
private metadataPathSQL: string = ''
417417
private linesOfCodeSubmitted: number | undefined = undefined
418+
private sourceDB: DB | undefined = undefined
419+
420+
private targetDB: DB | undefined = undefined
421+
422+
private schema: string = ''
423+
424+
private schemaOptions: Set<string> = new Set()
425+
426+
private sourceServerName: string = ''
427+
428+
private metadataPathSQL: string = ''
418429

419430
private planFilePath: string = ''
420431
private summaryFilePath: string = ''

0 commit comments

Comments
 (0)