diff options
author | pem@mysql.comhem.se <> | 2003-12-16 19:14:10 +0100 |
---|---|---|
committer | pem@mysql.comhem.se <> | 2003-12-16 19:14:10 +0100 |
commit | 7a1fddaa1f0ef402a4030276880eae5fc932cfbc (patch) | |
tree | 12a86bd8ee75acaeb07b307f9ac5935d4e1fe80d /Docs | |
parent | bb51272bd162fc5d94f4a793892ce23921743b9e (diff) | |
download | mariadb-git-7a1fddaa1f0ef402a4030276880eae5fc932cfbc.tar.gz |
Renamed the "schema" column to "db" in mysql.proc to keep it in style with
all the other mysql.* tables.
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/sp-imp-spec.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/sp-imp-spec.txt b/Docs/sp-imp-spec.txt index ee9bc7a0e4f..c1b91d2c2c5 100644 --- a/Docs/sp-imp-spec.txt +++ b/Docs/sp-imp-spec.txt @@ -1056,7 +1056,7 @@ - The mysql.proc schema: CREATE TABLE 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, @@ -1093,7 +1093,7 @@ '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'; -- |