1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-19 19:03:26 +03:00
Files
mariadb/sql
unknown cabd28c68c In order to make ALTER PROCEDURE|FUNCTION work correctly, and in general to
make characteristics (and SHOW) work right, we had to separate the old
definition blob in the mysql.proc table into separate fields for parameters,
return type, and body, and handle the characteristics (like SQL SECURITY)
separately... and then reassemble the CREATE string for parsing, of course.
This is rather ugly, mostly the parser bit. (Hopefully that will be better
with the new parser.)


Docs/sp-imp-spec.txt:
  Separated the definitions string of the procedure into different columns
  in the mysql.proc schema.
mysql-test/r/sp.result:
  New characteristics tests.
mysql-test/t/sp.test:
  New characteristics tests.
scripts/mysql_create_system_tables.sh:
  Separated the definitions string of the procedure into different columns
  in the mysql.proc schema.
scripts/mysql_fix_privilege_tables.sql:
  Separated the definitions string of the procedure into different columns
  in the mysql.proc schema.
sql/sp.cc:
  Separated the definitions string of the procedure into different columns.
  Rewrote much of the code related this (have a assemble the definition
  string from its different parts now) and the way characteristics are now
  handled, in order to make ALTER actually work.
sql/sp.h:
  Changed prototypes.
sql/sp_head.cc:
  Rewrote much of the code related to the new mysql.proc schema with separate
  definition fields (have to assemble the definition string from its different
  parts now) and the way characteristics are now handled, in order to make ALTER
  actually work.
sql/sp_head.h:
  Separated the different parts of the definition strings: name, parameters,
  return type (for functions) and body.
sql/sql_yacc.yy:
  Separated the different parts of the definition strings: name, parameters,
  return type (for functions) and body.
  This is ugly and messy; hopefully there's a more elegant way to do this
  when the new parser is installed.
2003-12-12 14:05:29 +01:00
..
2003-12-09 19:00:34 +01:00
2003-09-19 14:05:28 +05:00
2003-11-20 22:06:25 +02:00
2003-10-07 15:42:26 +03:00
2003-09-24 11:29:38 +02:00
2003-11-19 15:19:46 +01:00
2003-10-30 19:17:57 +01:00
2003-12-01 16:14:40 +01:00
2003-10-24 22:44:48 +02:00
2003-12-01 16:14:40 +01:00
2003-08-19 00:08:08 +03:00
2003-09-19 14:44:31 +05:00
2003-12-01 16:14:40 +01:00
2003-12-08 15:18:29 +04:00
2003-12-08 15:18:29 +04:00
2003-12-01 16:14:40 +01:00
2003-11-19 15:19:46 +01:00
2003-11-03 22:48:03 +02:00
2003-12-01 16:14:40 +01:00
2003-12-01 16:14:40 +01:00
2003-10-22 20:52:47 +03:00
2003-12-08 17:44:56 +04:00
2003-12-08 15:18:29 +04:00
2003-10-22 16:10:22 +02:00
2003-11-19 15:19:46 +01:00
2003-11-04 09:40:36 +02:00
2003-12-01 16:14:40 +01:00
2003-12-09 19:00:34 +01:00
2003-12-09 19:00:34 +01:00
2003-11-20 23:27:11 +03:00
2003-12-01 16:14:40 +01:00
2003-11-22 00:20:48 +03:00
2003-11-20 22:06:25 +02:00
2003-09-03 16:31:01 +02:00
2003-12-01 18:24:09 +01:00
2003-12-01 16:14:40 +01:00
2003-09-24 11:29:38 +02:00
2003-12-01 16:14:40 +01:00
2003-12-09 19:00:34 +01:00
2003-12-08 09:44:04 +04:00
2003-12-09 19:00:34 +01:00
2003-11-23 17:02:59 +01:00
2003-10-21 18:13:14 +02:00
2003-10-21 18:13:14 +02:00
2003-11-13 19:34:56 +01:00
2003-11-13 19:34:56 +01:00
2003-12-09 19:00:34 +01:00
2003-11-20 12:55:48 +04:00
2003-12-01 16:14:40 +01:00
2003-11-19 15:19:46 +01:00
2003-07-14 16:38:51 +05:00
2003-12-01 16:14:40 +01:00
2003-12-09 19:00:34 +01:00
2003-11-28 13:31:38 +02:00
2003-12-01 16:14:40 +01:00
2003-11-20 22:30:48 +02:00
2003-12-01 16:14:40 +01:00
2003-12-01 16:14:40 +01:00
2003-12-01 16:14:40 +01:00
2003-12-09 19:00:34 +01:00
2003-12-04 18:15:45 +03:00
2003-07-14 10:12:05 +03:00
2003-12-01 16:14:40 +01:00
2003-08-26 11:51:09 +02:00
2003-12-09 19:00:34 +01:00
2003-12-01 16:14:40 +01:00
2003-12-09 19:00:34 +01:00
2003-11-03 12:28:36 +02:00
2003-11-03 12:28:36 +02:00
2003-12-09 19:00:34 +01:00
2003-12-01 16:14:40 +01:00
2003-12-01 18:24:09 +01:00
2003-12-09 19:00:34 +01:00
2003-11-20 22:06:25 +02:00
2003-11-19 15:19:46 +01:00
2003-11-20 22:06:25 +02:00
2003-10-06 11:13:25 +03:00
2003-12-02 21:20:51 +03:00