Skip to content

Commit

Permalink
minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sanyamsinghal committed Jan 23, 2025
1 parent 1c34ba8 commit b0a2b9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions migtests/tests/analyze-schema/expected_issues.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"ObjectName": "test_1, constraint: (test_1_id_fkey)",
"Reason": "Foreign key references to partitioned table are not yet supported in YugabyteDB.",
"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) ;",
"Suggestion": "No workaround available ",
"Suggestion": "No workaround available.",
"GH": "https://github.com/yugabyte/yugabyte-db/issues/25575",
"DocsLink": "https://docs.yugabyte.com/preview/yugabyte-voyager/known-issues/postgresql/#postgresql-12-and-later-features",
"MinimumVersionsFixedIn": null
Expand Down Expand Up @@ -2073,7 +2073,7 @@
"ObjectName": "public.asterisks1",
"Reason": "SQL Body for sql languages in function statement is not supported in YugabyteDB",
"SqlStatement": "CREATE FUNCTION public.asterisks1(n integer) RETURNS text\n LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE\n RETURN repeat('*'::text, n);",
"Suggestion": "No workaround available",
"Suggestion": "No workaround available.",
"GH": "https://github.com/yugabyte/yugabyte-db/issues/25575",
"DocsLink": "https://docs.yugabyte.com/preview/yugabyte-voyager/known-issues/postgresql/#postgresql-12-and-later-features",
"MinimumVersionsFixedIn": null
Expand All @@ -2084,7 +2084,7 @@
"ObjectName": "public.asterisks",
"Reason": "SQL Body for sql languages in function statement is not supported in YugabyteDB",
"SqlStatement": "CREATE FUNCTION public.asterisks(n integer) RETURNS SETOF text\n LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE\n BEGIN ATOMIC\n SELECT repeat('*'::text, g.g) AS repeat\n FROM generate_series(1, asterisks.n) g(g);\nEND;",
"Suggestion": "No workaround available",
"Suggestion": "No workaround available.",
"GH": "https://github.com/yugabyte/yugabyte-db/issues/25575",
"DocsLink": "https://docs.yugabyte.com/preview/yugabyte-voyager/known-issues/postgresql/#postgresql-12-and-later-features",
"MinimumVersionsFixedIn": null
Expand All @@ -2095,7 +2095,7 @@
"ObjectName": "add",
"Reason": "SQL Body for sql languages in function statement is not supported in YugabyteDB",
"SqlStatement": "CREATE FUNCTION add(int, int) RETURNS int IMMUTABLE PARALLEL SAFE BEGIN ATOMIC; SELECT $1 + $2; END;",
"Suggestion": "No workaround available",
"Suggestion": "No workaround available.",
"GH": "https://github.com/yugabyte/yugabyte-db/issues/25575",
"DocsLink": "https://docs.yugabyte.com/preview/yugabyte-voyager/known-issues/postgresql/#postgresql-12-and-later-features",
"MinimumVersionsFixedIn": null
Expand Down
4 changes: 2 additions & 2 deletions yb-voyager/src/query/queryissue/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,6 @@ const (
MULTI_RANGE_DATATYPE_ISSUE_SUGGESTION = "Multirange data type is not yet supported in YugabyteDB, no workaround available currently"
SECURITY_INVOKER_VIEWS_ISSUE_SUGGESTION = "Security Invoker Views are not yet supported in YugabyteDB, no workaround available currently"
DETERMINISTIC_OPTION_WITH_COLLATION_ISSUE_SUGGESTION = "This feature is not supported in YugabyteDB yet"
FOREIGN_KEY_REFERENCES_PARTITIONED_TABLE_ISSUE_SUGGESTION = "No workaround available "
SQL_BODY_IN_FUNCTION_ISSUE_SUGGESTION = "No workaround available "
FOREIGN_KEY_REFERENCES_PARTITIONED_TABLE_ISSUE_SUGGESTION = "No workaround available."
SQL_BODY_IN_FUNCTION_ISSUE_SUGGESTION = "No workaround available."
)

0 comments on commit b0a2b9c

Please sign in to comment.