We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c10644 commit af3fbb1Copy full SHA for af3fbb1
source/postgres_test.go
@@ -139,8 +139,8 @@ func TestPostgresSource_GetMinMaxSplitKey(t *testing.T) {
139
defer tearDownFunc()
140
min, max, err := postgresSourceTest.postgresSource.GetMinMaxSplitKey()
141
assert.NoError(t, err)
142
- assert.Equal(t, int64(1), min)
143
- assert.Equal(t, int64(2), max)
+ assert.Equal(t, uint64(1), min)
+ assert.Equal(t, uint64(2), max)
144
}
145
146
func TestPostgresSource_GetMinMaxTimeSplitKey(t *testing.T) {
0 commit comments