Skip to content

Commit 8f5d514

Browse files
committed
Clean up the printfs
1 parent 37cbb28 commit 8f5d514

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

sql/auth/sql_security_ctx.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -848,17 +848,12 @@ void Security_context::assign_user(const char *user_arg,
848848
char *rows_read_exclude_users = nullptr;
849849

850850
void Security_context::recheck_exclude_rows_read() {
851-
printf("PIKI: recheck_exclude_rows_read: user=\"%s\"\n", m_user.ptr());
852-
853851
m_exclude_user_from_rows_read = false;
854852
if (rows_read_exclude_users) {
855-
printf("PIKI: rows_read_exclude_users=\"%s\"\n", rows_read_exclude_users);
856853
char *copy = strdup(rows_read_exclude_users);
857854
char *saveptr, *tok;
858855
for (tok=my_strtok_r(copy, ",", &saveptr); tok; tok=my_strtok_r(NULL, ",", &saveptr)) {
859-
printf("PIKI: tok=\"%s\"\n", tok);
860856
if (!strcmp(tok, m_user.ptr())) {
861-
printf("PIKI: yes, exclude them!\n");
862857
m_exclude_user_from_rows_read = true;
863858
break;
864859
}

0 commit comments

Comments
 (0)