1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

make information schema libmysqld compatible

fixed typo


sql/handler.cc:
  fixed typo
sql/sql_acl.cc:
  make information schema libmysqld compatible
This commit is contained in:
unknown
2004-11-14 00:28:44 +02:00
parent d18a91a90c
commit 9ec34a400a
2 changed files with 14 additions and 6 deletions

View File

@ -3985,8 +3985,10 @@ int fill_schema_user_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN(0);
#else
return(0);
#endif
}
@ -4033,8 +4035,10 @@ int fill_schema_schema_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN(0);
#else
return (0);
#endif
}
@ -4078,8 +4082,10 @@ int fill_schema_table_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN(0);
#else
return (0);
#endif
}
@ -4135,8 +4141,10 @@ int fill_schema_column_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN(0);
#else
return (0);
#endif
}