summaryrefslogtreecommitdiff
path: root/Docs/sp-imp-spec.txt
diff options
context:
space:
mode:
authorunknown <pem@mysql.comhem.se>2003-12-16 19:14:10 +0100
committerunknown <pem@mysql.comhem.se>2003-12-16 19:14:10 +0100
commitfd4544879b91fec027909f3607fe9fa68a214241 (patch)
tree12a86bd8ee75acaeb07b307f9ac5935d4e1fe80d /Docs/sp-imp-spec.txt
parentbc748bef530dcbcd155f3fe58f68d77520d7d264 (diff)
downloadmariadb-git-fd4544879b91fec027909f3607fe9fa68a214241.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/sp-imp-spec.txt')
-rw-r--r--Docs/sp-imp-spec.txt4
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';
--