Skip to content

Commit c35aa59

Browse files
committed
Clean up the printfs
1 parent 84361c3 commit c35aa59

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
@@ -846,17 +846,12 @@ void Security_context::assign_user(const char *user_arg,
846846
char *rows_read_exclude_users = nullptr;
847847

848848
void Security_context::recheck_exclude_rows_read() {
849-
printf("PIKI: recheck_exclude_rows_read: user=\"%s\"\n", m_user.ptr());
850-
851849
m_exclude_user_from_rows_read = false;
852850
if (rows_read_exclude_users) {
853-
printf("PIKI: rows_read_exclude_users=\"%s\"\n", rows_read_exclude_users);
854851
char *copy = strdup(rows_read_exclude_users);
855852
char *saveptr, *tok;
856853
for (tok=my_strtok_r(copy, ",", &saveptr); tok; tok=my_strtok_r(NULL, ",", &saveptr)) {
857-
printf("PIKI: tok=\"%s\"\n", tok);
858854
if (!strcmp(tok, m_user.ptr())) {
859-
printf("PIKI: yes, exclude them!\n");
860855
m_exclude_user_from_rows_read = true;
861856
break;
862857
}

0 commit comments

Comments
 (0)