Skip to content

Commit

Permalink
Fixing issues after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivanshGahlot committed Jan 9, 2025
1 parent 7e8fa00 commit 2e0ee2e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions yb-voyager/src/query/queryissue/issues_ddl.go
Original file line number Diff line number Diff line change
Expand Up @@ -517,12 +517,12 @@ func NewForeignKeyReferencesPartitionedTableIssue(objectType string, objectName
}

var uniqueNullsNotDistinctIssue = issue.Issue{
Type: UNIQUE_NULLS_NOT_DISTINCT,
TypeName: "UNIQUE NULLS NOT DISTINCT",
TypeDescription: "",
Suggestion: "",
GH: "",
DocsLink: "",
Type: UNIQUE_NULLS_NOT_DISTINCT,
Name: UNIQUE_NULLS_NOT_DISTINCT_NAME,
Impact: constants.IMPACT_LEVEL_1,
Suggestion: "",
GH: "",
DocsLink: "",
}

func NewUniqueNullsNotDistinctIssue(objectType string, objectName string, sqlStatement string) QueryIssue {
Expand Down
2 changes: 1 addition & 1 deletion yb-voyager/src/query/queryparser/traversal_proto.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const (
PG_QUERY_VIEWSTMT_NODE = "pg_query.ViewStmt"
PG_QUERY_COPYSTSMT_NODE = "pg_query.CopyStmt"
PG_QUERY_CONSTRAINT_NODE = "pg_query.Constraint"
PG_QUERY_INDEX_STMT_NODE = "pg_query.IndexStmt"
PG_QUERY_INDEXSTMT_NODE = "pg_query.IndexStmt"
)

// function type for processing nodes during traversal
Expand Down

0 comments on commit 2e0ee2e

Please sign in to comment.