sqldb: use uint32 for config values

This commit is contained in:
Elle Mouton
2025-08-14 08:03:28 +02:00
parent d5729845d0
commit f560c4d95b
4 changed files with 18 additions and 18 deletions

View File

@@ -341,7 +341,7 @@ func TestExecutePaginatedQuery(t *testing.T) {
tests := []struct {
name string
pageSize int32
pageSize uint32
allItems []testItem
initialCursor int64
queryError error
@@ -592,7 +592,7 @@ func TestExecuteCollectAndBatchWithSharedDataQuery(t *testing.T) {
tests := []struct {
name string
maxPageSize int32
maxPageSize uint32
allRows []channelRow
initialCursor int64
pageQueryError error