Skip to content

Commit ebe444c

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 974e7eb commit ebe444c

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
@@ -413,6 +413,17 @@ export class TransformByQState {
413413

414414
private metadataPathSQL: string = ''
415415
private linesOfCodeSubmitted: number | undefined = undefined
416+
private sourceDB: DB | undefined = undefined
417+
418+
private targetDB: DB | undefined = undefined
419+
420+
private schema: string = ''
421+
422+
private schemaOptions: Set<string> = new Set()
423+
424+
private sourceServerName: string = ''
425+
426+
private metadataPathSQL: string = ''
416427

417428
private planFilePath: string = ''
418429
private summaryFilePath: string = ''

0 commit comments

Comments
 (0)