1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix various spelling errors

Among others:
existance -> existence
reinitialze -> reinitialize
successfuly -> successfully
This commit is contained in:
Otto Kekäläinen
2022-03-02 18:18:43 -08:00
committed by Daniel Black
parent 2db80c3773
commit 1fa872f6ef
12 changed files with 19 additions and 19 deletions

View File

@@ -5367,9 +5367,9 @@ name, then 'TEMPORARY' will be returned.
##### Parameters
* in_db (VARCHAR(64)): The database name to check for the existance of the table in.
* in_db (VARCHAR(64)): The database name to check for the existence of the table in.
* in_table (VARCHAR(64)): The name of the table to check the existance of.
* in_table (VARCHAR(64)): The name of the table to check the existence of.
* out_exists ENUM('', 'BASE TABLE', 'VIEW', 'TEMPORARY'): The return value: whether the table exists. The value is one of:
- '' - the table does not exist neither as a base table, view, nor temporary table.

View File

@@ -34,10 +34,10 @@ CREATE DEFINER='mariadb.sys'@'localhost' PROCEDURE table_exists (
-----------
in_db (VARCHAR(64)):
The database name to check for the existance of the table in.
The database name to check for the existence of the table in.
in_table (VARCHAR(64)):
The name of the table to check the existance of.
The name of the table to check the existence of.
out_exists ENUM('''', ''BASE TABLE'', ''VIEW'', ''TEMPORARY''):
The return value: whether the table exists. The value is one of: