1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Renamed the "schema" column to "db" in mysql.proc to keep it in style with

all the other mysql.* tables.
This commit is contained in:
pem@mysql.comhem.se
2003-12-16 19:14:10 +01:00
parent bb51272bd1
commit 7a1fddaa1f
4 changed files with 9 additions and 9 deletions

View File

@ -140,7 +140,7 @@ unique index (name)
#
CREATE TABLE IF NOT EXISTS proc (
schema char(64) binary DEFAULT '' NOT NULL,
db char(64) binary DEFAULT '' NOT NULL,
name char(64) binary DEFAULT '' NOT NULL,
type enum('FUNCTION','PROCEDURE') NOT NULL,
specific_name char(64) binary DEFAULT '' NOT NULL,
@ -177,5 +177,5 @@ CREATE TABLE IF NOT EXISTS proc (
'NO_AUTO_VALUE_ON_ZERO'
) DEFAULT 0 NOT NULL,
comment char(64) binary DEFAULT '' NOT NULL,
PRIMARY KEY (schema,name,type)
PRIMARY KEY (db,name,type)
) comment='Stored Procedures';