-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-17.0] Ignore error while reading table data in Schema.Engine…
… reload (#13421) (#13423) * ignore views load error Signed-off-by: Harshit Gangal <harshit@planetscale.com> * added unit test Signed-off-by: Harshit Gangal <harshit@planetscale.com> --------- Signed-off-by: Harshit Gangal <harshit@planetscale.com> Co-authored-by: Harshit Gangal <harshit@planetscale.com>
- Loading branch information
1 parent
411c6d2
commit ec7f8a3
Showing
4 changed files
with
113 additions
and
82 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* | ||
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 agreedto 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 syslogger | ||
|
||
import ( | ||
"fmt" | ||
|
||
"vitess.io/vitess/go/vt/log" | ||
) | ||
|
||
type loggerMsg struct { | ||
msg string | ||
level string | ||
} | ||
type testLogger struct { | ||
logs []loggerMsg | ||
savedInfof func(format string, args ...any) | ||
savedWarningf func(format string, args ...any) | ||
savedErrorf func(format string, args ...any) | ||
} | ||
|
||
func NewTestLogger() *testLogger { | ||
tl := &testLogger{ | ||
savedInfof: log.Infof, | ||
savedWarningf: log.Warningf, | ||
savedErrorf: log.Errorf, | ||
} | ||
log.Infof = tl.recordInfof | ||
log.Warningf = tl.recordWarningf | ||
log.Errorf = tl.recordErrorf | ||
return tl | ||
} | ||
|
||
func (tl *testLogger) Close() { | ||
log.Infof = tl.savedInfof | ||
log.Warningf = tl.savedWarningf | ||
log.Errorf = tl.savedErrorf | ||
} | ||
|
||
func (tl *testLogger) recordInfof(format string, args ...any) { | ||
msg := fmt.Sprintf(format, args...) | ||
tl.logs = append(tl.logs, loggerMsg{msg, "INFO"}) | ||
tl.savedInfof(msg) | ||
} | ||
|
||
func (tl *testLogger) recordWarningf(format string, args ...any) { | ||
msg := fmt.Sprintf(format, args...) | ||
tl.logs = append(tl.logs, loggerMsg{msg, "WARNING"}) | ||
tl.savedWarningf(msg) | ||
} | ||
|
||
func (tl *testLogger) recordErrorf(format string, args ...any) { | ||
msg := fmt.Sprintf(format, args...) | ||
tl.logs = append(tl.logs, loggerMsg{msg, "ERROR"}) | ||
tl.savedErrorf(msg) | ||
} | ||
|
||
func (tl *testLogger) getLog() loggerMsg { | ||
if len(tl.logs) > 0 { | ||
return tl.logs[len(tl.logs)-1] | ||
} | ||
return loggerMsg{"no logs!", "ERROR"} | ||
} | ||
|
||
func (tl *testLogger) GetAllLogs() []string { | ||
var logs []string | ||
for _, l := range tl.logs { | ||
logs = append(logs, l.level+":"+l.msg) | ||
} | ||
return logs | ||
} |
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