Skip to content
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

[auto-bump] [no-release-notes] dependency by jycor #7693

Merged
merged 17 commits into from
Apr 5, 2024
Prev Previous commit
fix
  • Loading branch information
James Cor committed Apr 5, 2024
commit d1a59f21b34ec124d8cd91262f3629c933d3543d
6 changes: 3 additions & 3 deletions integration-tests/mysql-client-tests/r/rmysql-test.r
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ responses = list(NULL,
Default = c(NA_character_, NA_character_),
Extra = c("", ""), stringsAsFactors = FALSE),
NULL,
data.frame(pk = c(0), value = c(0), stringsAsFactors = FALSE))
data.frame(pk = c(as.integer(0)), value = c(as.integer(0)), stringsAsFactors = FALSE))

for(i in 1:length(queries)) {
q = queries[[i]]
Expand All @@ -36,8 +36,8 @@ for(i in 1:length(queries)) {
for (j in 1:length(want)) {
if (!identical(want[[j]], got[[j]])) {
print(q)
print(c("want:", want[[i]], "type: ", typeof(want[[i]])))
print(c("got:", got[[i]], "type: ", typeof(got[[i]])))
print(c("want:", want[[j]], "type: ", typeof(want[[j]])))
print(c("got:", got[[j]], "type: ", typeof(got[[j]])))
quit("no", 1)
}
}
Expand Down
Loading