-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLI sync S3 end to end integration test #3001
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3001 +/- ##
==========================================
- Coverage 36.10% 35.95% -0.15%
==========================================
Files 344 345 +1
Lines 39476 39700 +224
==========================================
+ Hits 14252 14275 +23
- Misses 23560 23762 +202
+ Partials 1664 1663 -1 ☔ View full report in Codecov by Sentry. |
@@ -0,0 +1,362 @@ | |||
package main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copied from worker integration tests. Will eventually remove the worker one in favor of this one
@@ -135,7 +134,7 @@ INSERT INTO alltypes.all_postgres_types ( | |||
DEFAULT, | |||
32767, -- smallint_col | |||
2147483647, -- integer_col | |||
9223372036854775807, -- bigint_col | |||
922337203685477580, -- bigint_col |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Max postgres bigint is 9223372036854775807 but when written to S3 and then synced to postgres causes the number to be too large. Need to investigate further
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, I don't like this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"go.temporal.io/sdk/testsuite" | ||
) | ||
|
||
type Option func(*TestWorkflowEnv) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fancy
completes NEOS-1653