-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Add support for kill statement #13371
Merged
Merged
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
db06b7c
added kill statement in parser
harshit-gangal 272a109
add support for executing kill statement
harshit-gangal 34c0895
added e2e test for kill statement
harshit-gangal 3ac8260
added more e2e test
harshit-gangal c1ed768
added unit test
harshit-gangal 9c958e5
introduce closing bool for connection to check if connection is usabl…
harshit-gangal 74d0c35
updated the test
harshit-gangal c9cd94d
add allow-kill-statement flag to enable kill statement
harshit-gangal 6d4cb68
updated the test help output expectation
harshit-gangal 743bbe3
Merge remote-tracking branch 'upstream/main' into kill-stmt
harshit-gangal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
Copyright 2023 The Vitess Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package mysql | ||
|
||
import ( | ||
"fmt" | ||
"net" | ||
"time" | ||
) | ||
|
||
// testConn to be used for testing only as net.Conn interface implementation. | ||
type testConn struct { | ||
writeToPass []bool | ||
pos int | ||
queryPacket []byte | ||
} | ||
|
||
func (t testConn) Read(b []byte) (n int, err error) { | ||
copy(b, t.queryPacket) | ||
return len(b), nil | ||
} | ||
|
||
func (t testConn) Write(b []byte) (n int, err error) { | ||
t.pos = t.pos + 1 | ||
if t.writeToPass[t.pos] { | ||
return 0, nil | ||
} | ||
return 0, fmt.Errorf("error in writing to connection") | ||
} | ||
|
||
func (t testConn) Close() error { | ||
return nil | ||
} | ||
|
||
func (t testConn) LocalAddr() net.Addr { | ||
panic("implement me") | ||
} | ||
|
||
func (t testConn) RemoteAddr() net.Addr { | ||
return mockAddress{s: "a"} | ||
} | ||
|
||
func (t testConn) SetDeadline(t1 time.Time) error { | ||
panic("implement me") | ||
} | ||
|
||
func (t testConn) SetReadDeadline(t1 time.Time) error { | ||
panic("implement me") | ||
} | ||
|
||
func (t testConn) SetWriteDeadline(t1 time.Time) error { | ||
panic("implement me") | ||
} | ||
|
||
var _ net.Conn = (*testConn)(nil) | ||
|
||
type mockAddress struct { | ||
s string | ||
} | ||
|
||
func (m mockAddress) Network() string { | ||
return m.s | ||
} | ||
|
||
func (m mockAddress) String() string { | ||
return m.s | ||
} | ||
|
||
var _ net.Addr = (*mockAddress)(nil) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm thinking we want to introduce a type to be sent in here, instead of growing the arguments across all interface implementations. Like we have the planning-context when planning and the vcursor when running. WDYT?
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.
Let's keep that refactor when we go about changing this definition again.