Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-asawicki committed Dec 8, 2023
1 parent e2d304e commit 98eab8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions pkg/sdk/event_tables_dto_builders_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/sdk/event_tables_dto_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type CreateEventTableRequest struct {
DefaultDdlCollation *string
CopyGrants *bool
Comment *string
RowAccessPolicy *RowAccessPolicy
RowAccessPolicy *TableRowAccessPolicy
Tag []TagAssociation
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/event_tables_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type CreateEventTableOptions struct {
DefaultDdlCollation *string `ddl:"parameter,single_quotes" sql:"DEFAULT_DDL_COLLATION"`
CopyGrants *bool `ddl:"keyword" sql:"COPY GRANTS"`
Comment *string `ddl:"parameter,single_quotes" sql:"COMMENT"`
RowAccessPolicy *RowAccessPolicy `ddl:"keyword"`
RowAccessPolicy *TableRowAccessPolicy `ddl:"keyword"`
Tag []TagAssociation `ddl:"keyword,parentheses" sql:"TAG"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/event_tables_gen_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestEventTables_Create(t *testing.T) {
opts.CopyGrants = Bool(true)
opts.Comment = String("test")
pn := NewSchemaObjectIdentifier(random.StringN(4), random.StringN(4), random.StringN(4))
opts.RowAccessPolicy = &RowAccessPolicy{
opts.RowAccessPolicy = &TableRowAccessPolicy{
Name: pn,
On: []string{"c1", "c2"},
}
Expand Down

0 comments on commit 98eab8e

Please sign in to comment.