dttung2905 commented on code in PR #378:
URL: https://github.com/apache/iceberg-go/pull/378#discussion_r2029812165


##########
catalog/glue/glue_test.go:
##########
@@ -96,6 +96,12 @@ func (m *mockGlueClient) UpdateDatabase(ctx context.Context, 
params *glue.Update
        return args.Get(0).(*glue.UpdateDatabaseOutput), args.Error(1)
 }
 
+func (m *mockGlueClient) UpdateTable(ctx context.Context, params 
*glue.UpdateTableInput, optFns ...func(*glue.Options)) 
(*glue.UpdateTableOutput, error) {
+       args := m.Called(ctx, params, optFns)
+
+       return args.Get(0).(*glue.UpdateTableOutput), args.Error(1)
+}
+

Review Comment:
   Is it possible to create some mocks here ? :thinking: 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to