mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
c1113af15c
- WL#3158: IM: Instance configuration extensions; - WL#3159: IM: --bootstrap and --start-default-instance modes The following new statements have been added: - CREATE INSTANCE; - DROP INSTANCE; The behaviour of the following statements have been changed: - SET; - UNSET; - FLUSH INSTANCES; - SHOW INSTANCES; - SHOW INSTANCE OPTIONS;
41 lines
1.4 KiB
C
41 lines
1.4 KiB
C
#ifndef INCLUDES_MYSQL_INSTANCE_MANAGER_EXIT_CODES_H
|
|
#define INCLUDES_MYSQL_INSTANCE_MANAGER_EXIT_CODES_H
|
|
|
|
/*
|
|
Copyright (C) 2006 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/*
|
|
This file contains a list of exit codes, which are used when Instance
|
|
Manager is working in user-management mode.
|
|
*/
|
|
|
|
const int ERR_OK = 0;
|
|
|
|
const int ERR_OUT_OF_MEMORY = 1;
|
|
const int ERR_INVALID_USAGE = 2;
|
|
const int ERR_INTERNAL_ERROR = 3;
|
|
const int ERR_IO_ERROR = 4;
|
|
const int ERR_PASSWORD_FILE_CORRUPTED = 5;
|
|
const int ERR_PASSWORD_FILE_DOES_NOT_EXIST = 6;
|
|
|
|
const int ERR_CAN_NOT_READ_USER_NAME = 10;
|
|
const int ERR_CAN_NOT_READ_PASSWORD = 11;
|
|
const int ERR_USER_ALREADY_EXISTS = 12;
|
|
const int ERR_USER_NOT_FOUND = 13;
|
|
|
|
#endif // INCLUDES_MYSQL_INSTANCE_MANAGER_EXIT_CODES_H
|