Skip to content

Commit 0094243

Browse files
akashthawaitccasthamohtataherkltaherklVivekY1098
authored
sync gcp master (#41)
* feat: default values final PR (GoogleCloudPlatform#976) * changes * changes * changes * changes * verification API and dump flow changes to support MySQL CHECK CONSTRAINTS (GoogleCloudPlatform#978) * verification ap and dump flow changes * fixed IT issue * Check constraints verificartion api v2 (#24) * handled function not found * added unhandled error * updated the error msg --------- Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> * fix IT issue * comment addressed (#27) * comment addressed 1. rename the functionNotFound 2. added condition to call verification api * spell checked --------- Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> * refactor the DbDumpImpl struct (#28) * refactor the DbDumpImpl struct * remove the GenerateCheckConstrainstExprId method --------- Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> * fixed if condition --------- Co-authored-by: taherkl <taher.lakdawala@ollion.com> Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> Co-authored-by: Vivek Yadav <105432992+VivekY1098@users.noreply.github.com> * Replace ReadOnlyTransaction() with Single() (GoogleCloudPlatform#984) * UI changes for check constraint support (GoogleCloudPlatform#979) * UI changes for check constraint support * removed url changed for testing * Check UI cmt (#29) * remove the block which will not execute * refactor the code 1. remove the unreachable code 2. remvoe the node-sql-parser package * refactor the code 1. rename the generateId method --------- Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> * updated the dist file and package.lock file * Develop (#36) * verification API and dump flow changes to support MySQL CHECK CONSTRAINTS (GoogleCloudPlatform#978) (#30) * verification ap and dump flow changes * fixed IT issue * Check constraints verificartion api v2 (#24) * handled function not found * added unhandled error * updated the error msg --------- * fix IT issue * comment addressed (#27) * comment addressed 1. rename the functionNotFound 2. added condition to call verification api * spell checked --------- * refactor the DbDumpImpl struct (#28) * refactor the DbDumpImpl struct * remove the GenerateCheckConstrainstExprId method --------- * fixed if condition --------- Co-authored-by: Taher Lakdawala <78196491+taherkl@users.noreply.github.com> Co-authored-by: taherkl <taher.lakdawala@ollion.com> Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> Co-authored-by: Vivek Yadav <105432992+VivekY1098@users.noreply.github.com> * Replace ReadOnlyTransaction() with Single() (GoogleCloudPlatform#984) (#35) Co-authored-by: Manit Gupta <manitgupta@google.com> --------- Co-authored-by: Taher Lakdawala <78196491+taherkl@users.noreply.github.com> Co-authored-by: Akash Thawait <aakash@ollion.com> Co-authored-by: taherkl <taher.lakdawala@ollion.com> Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> Co-authored-by: Manit Gupta <manitgupta@google.com> --------- Co-authored-by: taherkl <taher.lakdawala@ollion.com> Co-authored-by: Akash Thawait <aakash@ollion.com> Co-authored-by: Vivek Yadav <105432992+VivekY1098@users.noreply.github.com> Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> Co-authored-by: Manit Gupta <manitgupta@google.com> --------- Co-authored-by: Astha Mohta <35952883+asthamohta@users.noreply.github.com> Co-authored-by: Taher Lakdawala <78196491+taherkl@users.noreply.github.com> Co-authored-by: taherkl <taher.lakdawala@ollion.com> Co-authored-by: Vivek Yadav <vivek.yadav@ollion.com> Co-authored-by: Vivek Yadav <105432992+VivekY1098@users.noreply.github.com> Co-authored-by: Manit Gupta <manitgupta@google.com>
1 parent 0974786 commit 0094243

24 files changed

+974
-56
lines changed

accessors/clients/spanner/client/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func (c *SpannerClientImpl) Refresh(ctx context.Context, dbURI string) error {
4646
}
4747

4848
func (c *SpannerClientImpl) Single() ReadOnlyTransaction {
49-
rotxn := c.spannerClient.ReadOnlyTransaction()
49+
rotxn := c.spannerClient.Single()
5050
return &ReadOnlyTransactionImpl{rotxn: rotxn}
5151
}
5252

ui/dist/ui/index.html

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

ui/dist/ui/main.7d3a46641d0b6df2.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/dist/ui/main.fec05b021cd4ee86.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

ui/dist/ui/polyfills.a7813c59798a2f34.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

ui/dist/ui/polyfills.c2c201edf5092294.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@
4444
"karma-jasmine-html-reporter": "~2.1.0",
4545
"typescript": "^5.3.3"
4646
}
47-
}
47+
}

ui/src/app/app.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'
99
import { FormsModule } from '@angular/forms'
1010
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'
1111
import { MatChipsModule } from '@angular/material/chips'
12+
import { MatTooltipModule } from '@angular/material/tooltip';
1213

1314
import { AppComponent } from './app.component'
1415
import { HeaderComponent } from './components/header/header.component'
@@ -113,7 +114,8 @@ import { AddNewSequenceComponent } from './components/add-new-sequence/add-new-s
113114
MatRadioModule,
114115
ClipboardModule,
115116
MatProgressSpinnerModule,
116-
MatChipsModule
117+
MatChipsModule,
118+
MatTooltipModule,
117119
],
118120
providers: [
119121
{

ui/src/app/components/direct-connection/direct-connection.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class DirectConnectionComponent implements OnInit {
9898
localStorage.setItem(PersistedFormValues.IsConnectionSuccessful, "true")
9999
this.clickEvent.closeDatabaseLoader()
100100
},
101-
error: (e) => {
101+
error: (e) => {
102102
this.isTestConnectionSuccessful = false
103103
this.snackbarService.openSnackBar(e.error, 'Close')
104104
localStorage.setItem(PersistedFormValues.IsConnectionSuccessful, "false")

0 commit comments

Comments
 (0)