-
Notifications
You must be signed in to change notification settings - Fork 85
bulkcopy: fix column escaping #253
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
base: main
Are you sure you want to change the base?
Conversation
@microsoft-github-policy-service agree |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #253 +/- ##
==========================================
+ Coverage 74.82% 74.91% +0.09%
==========================================
Files 32 32
Lines 6466 6467 +1
==========================================
+ Hits 4838 4845 +7
+ Misses 1337 1333 -4
+ Partials 291 289 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
// This example shows the usage of Connector type | ||
func ExampleLastInsertId() { | ||
func ExampleResult_LastInsertId() { | ||
|
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.
why this name change?
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.
because of new test analyzer behaviour:
https://go.dev/doc/go1.24#vet
https://go.dev/blog/examples#example-function-names
The new tests analyzer reports common mistakes in declarations of tests, fuzzers, benchmarks, and examples in test packages, such as malformed names, incorrect signatures, or examples that document non-existent identifiers. Some of these mistakes may cause tests not to run. This analyzer is among the subset of analyzers that are run by go test. See: https://go.dev/doc/go1.24#vet https://go.dev/blog/examples#example-function-names
f5fd314
to
1444147
Compare
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.
@shueybubbles Is there something wrong with the test environment? The linter is failing. |
@dlapko can you resolve the conflicts? |
No description provided.