Skip to content

Commit 4c8267d

Browse files
committed
fiz suggestion field
1 parent ef67431 commit 4c8267d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

migtests/tests/analyze-schema/expected_issues.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"ObjectName": "test_1",
4747
"Reason": "Foreign key constraint references partitioned table",
4848
"SqlStatement": "CREATE TABLE test_1 (\n\tid numeric NOT NULL REFERENCES sales_data(sales_id),\n\tcountry_code varchar(3),\n\trecord_type varchar(5),\n\tdescriptions varchar(50),\n\tPRIMARY KEY (id)\n) PARTITION BY LIST (country_code, record_type) ;",
49-
"Suggestion": "Not workaround available ",
49+
"Suggestion": "No workaround available ",
5050
"GH": "",
5151
"MinimumVersionsFixedIn": null
5252
},

yb-voyager/src/query/queryissue/issues_ddl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ func NewSecurityInvokerViewIssue(objectType string, objectName string, SqlStatem
469469
var foreignKeyReferencesPartitionedTableIssue = issue.Issue{
470470
Type: FOREIGN_KEY_REFERENCES_PARTITIONED_TABLE,
471471
TypeName: FOREIGN_KEY_REFERENCES_PARTITIONED_TABLE_NAME,
472-
Suggestion: "Not workaround available ",
472+
Suggestion: "No workaround available ",
473473
GH: "", // TODO
474474
DocsLink: "", // TODO
475475
}

0 commit comments

Comments
 (0)