⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changelog

📁 开启mysql的远程连接的方法 mysql-noinstall-5.1.6-alpha-win32.zip
💻
📖 第 1 页 / 共 5 页
字号:

  sql/sql_show.cc
    1.293.2.1 06/02/01 11:56:13 tomas@poseidon.ndb.mysql.com +3 -1
    MySQL Bugs: #16466: DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/handler.h
    1.185.1.1 06/02/01 11:56:13 tomas@poseidon.ndb.mysql.com +2 -2
    MySQL Bugs: #16466: DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/ha_ndbcluster.h
    1.114.1.1 06/02/01 11:56:13 tomas@poseidon.ndb.mysql.com +1 -1
    MySQL Bugs: #16466: DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/ha_ndbcluster.cc
    1.251.2.1 06/02/01 11:56:13 tomas@poseidon.ndb.mysql.com +28 -15
    MySQL Bugs: #16466: DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  mysql-test/t/ndb_dd_basic.test
    1.5 06/02/01 11:56:12 tomas@poseidon.ndb.mysql.com +2 -0
    MySQL Bugs: #16466: DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  mysql-test/r/ndb_dd_basic.result
    1.5 06/02/01 11:56:12 tomas@poseidon.ndb.mysql.com +8 -0
    MySQL Bugs: #16466: DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

ChangeSet
  1.2117.2.1 06/02/01 13:28:45 anozdrin@mysql.com +16 -0
  Fix for BUG#9412: Triggers: should have trigger privilege.
  
  Implement table-level TRIGGER privilege to control access to triggers.
  Before this path global SUPER privilege was used for this purpose, that
  was the big security problem.
  
  In details, before this patch SUPER privilege was required:
    - for the user at CREATE TRIGGER time to create a new trigger;
    - for the user at DROP TRIGGER time to drop the existing trigger;
    - for the definer at trigger activation time to execute the trigger (if the
      definer loses SUPER privilege, all its triggers become unavailable);
  
  This patch changes the behaviour in the following way:
    - TRIGGER privilege on the subject table for trigger is required:
      - for the user at CREATE TRIGGER time to create a new trigger;
      - for the user at DROP TRIGGER time to drop the existing trigger;
      - for the definer at trigger activation time to execute the trigger
        (if the definer loses TRIGGER privilege on the subject table, all its
        triggers on this table become unavailable).
    - SUPER privilege is still required:
      - for the user at CREATE TRIGGER time to explicitly set the trigger
        definer to the user other than CURRENT_USER().
  
  When the server works with database of the previous version (w/o TRIGGER
  privilege), or if the database is being upgraded from the previous versions,
  TRIGGER privilege is granted to whose users, who have CREATE privilege.

  sql/sql_yacc.yy
    1.448 06/02/01 13:28:40 anozdrin@mysql.com +1 -0
    Added TRIGGER privilege.

  sql/sql_trigger.cc
    1.44 06/02/01 13:28:40 anozdrin@mysql.com +25 -23
    Check TRIGGER privilege instead of SUPER.

  sql/sql_show.cc
    1.293.1.3 06/02/01 13:28:40 anozdrin@mysql.com +1 -0
    Added TRIGGER privilege.

  sql/sql_acl.h
    1.46 06/02/01 13:28:40 anozdrin@mysql.com +10 -6
    Added TRIGGER privilege.

  sql/sql_acl.cc
    1.176 06/02/01 13:28:40 anozdrin@mysql.com +8 -2
    Added TRIGGER privilege.

  scripts/mysql_fix_privilege_tables.sql
    1.39 06/02/01 13:28:40 anozdrin@mysql.com +9 -0
    Added TRIGGER privilege.

  scripts/mysql_create_system_tables.sh
    1.37 06/02/01 13:28:40 anozdrin@mysql.com +12 -9
    Added TRIGGER privilege.

  mysql-test/t/trigger-grant.test
    1.4 06/02/01 13:28:40 anozdrin@mysql.com +140 -10
    1. Grant table-level TRIGGER privilege instead of global SUPER one.
    2. Updated the test case to check that SUPER is required to specify
    the user other than the current as a definer.

  mysql-test/t/trigger-compat.test
    1.4 06/02/01 13:28:40 anozdrin@mysql.com +1 -2
    Grant table-level TRIGGER privilege instead of global SUPER one.

  mysql-test/r/trigger-grant.result
    1.3 06/02/01 13:28:40 anozdrin@mysql.com +57 -2
    Updated the result file after adding TRIGGER privilege.

  mysql-test/r/trigger-compat.result
    1.3 06/02/01 13:28:40 anozdrin@mysql.com +1 -2
    Updated the result file after adding TRIGGER privilege.

  mysql-test/r/sp.result
    1.181 06/02/01 13:28:40 anozdrin@mysql.com +2 -0
    Updated the result file after adding TRIGGER privilege.

  mysql-test/r/ps.result
    1.60 06/02/01 13:28:40 anozdrin@mysql.com +3 -3
    Updated the result file after adding TRIGGER privilege.

  mysql-test/r/lowercase_table_grant.result
    1.4 06/02/01 13:28:40 anozdrin@mysql.com +4 -4
    Updated the result file after adding TRIGGER privilege.

  mysql-test/r/information_schema.result
    1.105 06/02/01 13:28:40 anozdrin@mysql.com +1 -0
    Updated the result file after adding TRIGGER privilege.

  mysql-test/r/grant.result
    1.48 06/02/01 13:28:40 anozdrin@mysql.com +14 -13
    Updated the result file after adding TRIGGER privilege.

ChangeSet
  1.2117.1.3 06/02/01 10:21:48 marty@linux.site +2 -0
  Wrapped get/set_ndb_share_state with mutex lock

  sql/ha_ndbcluster.h
    1.115 06/02/01 10:21:10 marty@linux.site +20 -0
    Wrapped get/set_ndb_share_state with mutex lock

  sql/ha_ndbcluster.cc
    1.251.1.1 06/02/01 10:21:10 marty@linux.site +10 -9
    Wrapped get/set_ndb_share_state with mutex lock

ChangeSet
  1.2117.1.2 06/02/01 10:13:27 tomas@poseidon.ndb.mysql.com +1 -0
  bug 16996 ndbd nodes crash at api heartbeat failure if event/replication is used

  storage/ndb/src/kernel/blocks/suma/Suma.cpp
    1.34 06/02/01 10:13:21 tomas@poseidon.ndb.mysql.com +9 -1
    bug 16996 ndbd nodes crash at api heartbeat failure if event/replication is used

ChangeSet
  1.2117.1.1 06/02/01 10:07:04 tomas@poseidon.ndb.mysql.com +2 -0
  adjust test to give predictable output

  mysql-test/t/ndb_binlog_ddl_multi.test
    1.3 06/02/01 10:06:57 tomas@poseidon.ndb.mysql.com +6 -8
    adjust test to give predictable output

  mysql-test/r/ndb_binlog_ddl_multi.result
    1.3 06/02/01 10:06:57 tomas@poseidon.ndb.mysql.com +6 -19
    adjust test to give predictable output

ChangeSet
  1.2118 06/02/01 18:23:34 stewart@mysql.com +6 -0
  Merge mysql.com:/home/stewart/Documents/MySQL/5.1/new
  into  mysql.com:/home/stewart/Documents/MySQL/5.1/wl1359

  sql/sql_show.cc
    1.295 06/02/01 18:23:30 stewart@mysql.com +0 -0
    SCCS merged

  sql/log.cc
    1.188.1.2 06/02/01 18:22:46 stewart@mysql.com +0 -0
    Auto merged

  sql/handler.h
    1.186 06/02/01 18:22:46 stewart@mysql.com +0 -0
    Auto merged

  sql/ha_partition.cc
    1.27 06/02/01 18:22:46 stewart@mysql.com +0 -0
    Auto merged

  sql/ha_ndbcluster.cc
    1.252 06/02/01 18:22:45 stewart@mysql.com +0 -0
    Auto merged

  sql/ha_innodb.cc
    1.252 06/02/01 18:22:45 stewart@mysql.com +0 -0
    Auto merged

ChangeSet
  1.2117 06/02/01 02:34:02 tomas@poseidon.ndb.mysql.com +2 -0
  ensure repeatability of test case

  mysql-test/t/ndb_binlog_ddl_multi.test
    1.2 06/02/01 02:33:55 tomas@poseidon.ndb.mysql.com +2 -2
    ensure repeatability of test case

  mysql-test/r/ndb_binlog_ddl_multi.result
    1.2 06/02/01 02:33:55 tomas@poseidon.ndb.mysql.com +1 -1
    ensure repeatability of test case

ChangeSet
  1.2113.2.1 06/02/01 01:12:11 tomas@poseidon.ndb.mysql.com +11 -0
    wl2325, distribution of schema operations between mysql servers

  mysql-test/t/ndb_binlog_ddl_multi.test
    1.1 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +146 -0
    New BitKeeper file ``mysql-test/t/ndb_binlog_ddl_multi.test''

  mysql-test/r/ndb_binlog_ddl_multi.result
    1.1 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +145 -0
    New BitKeeper file ``mysql-test/r/ndb_binlog_ddl_multi.result''

  sql/ha_ndbcluster_binlog.h
    1.5 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +4 -2
      wl2325, distribution of schema operations between mysql servers

  sql/ha_ndbcluster_binlog.cc
    1.8 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +98 -27
      wl2325, distribution of schema operations between mysql servers

  sql/ha_ndbcluster.cc
    1.251 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +26 -19
      wl2325, distribution of schema operations between mysql servers

  mysql-test/t/ndb_multi_row.test
    1.2 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +0 -2
      wl2325, distribution of schema operations between mysql servers

  mysql-test/t/ndb_database.test
    1.3 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +0 -28
      wl2325, distribution of schema operations between mysql servers

  mysql-test/t/ndb_binlog_ddl_multi.test
    1.0 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +0 -0
    BitKeeper file /home/tomas/mysql51/mysql-test/t/ndb_binlog_ddl_multi.test

  mysql-test/t/ndb_alter_table_row.test
    1.5 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +0 -3
      wl2325, distribution of schema operations between mysql servers

  mysql-test/r/ndb_multi_row.result
    1.2 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +0 -6
      wl2325, distribution of schema operations between mysql servers

  mysql-test/r/ndb_binlog_ddl_multi.result
    1.0 06/02/01 01:12:04 tomas@poseidon.ndb.mysql.com +0 -0
    BitKeeper file /home/tomas/mysql51/mysql-test/r/ndb_binlog_ddl_multi.result

  mysql-test/r/ndb_database.result
    1.2 06/02/01 01:12:03 tomas@poseidon.ndb.mysql.com +0 -14
      wl2325, distribution of schema operations between mysql servers

  mysql-test/r/ndb_alter_table_row.result
    1.5 06/02/01 01:12:03 tomas@poseidon.ndb.mysql.com +0 -2
      wl2325, distribution of schema operations between mysql servers

ChangeSet
  1.2113.1.1 06/02/01 02:19:14 sergefp@mysql.com +1 -0
  Change DBUG_ASSERT(1) to DBUG_ASSERT(0)

  mysys/my_bitmap.c
    1.37 06/02/01 02:19:08 sergefp@mysql.com +4 -4
    Change DBUG_ASSERT(1) to DBUG_ASSERT(0)

ChangeSet
  1.2105.4.1 06/01/31 23:29:03 andrey@lmy004. +1 -0
  sql_mode should be after on_completion and before comment
  partial fix for bug #16407
  WL#1034 (Internal CRON)

  scripts/mysql_fix_privilege_tables.sql
    1.38 06/01/31 23:28:50 andrey@lmy004. +1 -1
    sql_mode should be after on_completion and before comment

ChangeSet
  1.2113 06/01/31 20:10:32 marty@linux.site +2 -0
  Added  test case for creating index on disk stored table

  mysql-test/t/ndb_dd_ddl.test
    1.4 06/01/31 20:10:19 marty@linux.site +2 -0
    Added  test case for creating index on disk stored table

  mysql-test/r/ndb_dd_ddl.result
    1.3 06/01/31 20:10:19 marty@linux.site +1 -0
    Added  test case for creating index on disk stored table

ChangeSet
  1.2105.3.1 06/01/31 13:10:05 reggie@big_geek. +5 -0
  a few corrections necessary for the win32 folder rename

  win/configure.js
    1.2 06/01/31 13:09:53 reggie@big_geek. +1 -1
    this file should be called from the root so we need to use the path

  win/cmakefiles/sql
    1.2 06/01/31 13:09:52 reggie@big_geek. +2 -2
    use proper win folder for path

  win/cmakefiles/base
    1.2 06/01/31 13:09:51 reggie@big_geek. +1 -1
    changed win32 to win

  win/build-vs8.bat
    1.3 06/01/31 13:09:49 reggie@big_geek. +6 -1
    fixed call out to deploy.bat

  win/build-vs71.bat
    1.3 06/01/31 13:09:48 reggie@big_geek. +6 -1
    fixed call out to deploy.bat

ChangeSet
  1.2109.1.1 06/01/31 18:08:11 marty@linux.site +2 -0
  Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.1-new
  into  linux.site:/home/marty/MySQL/mysql-5.1-new

ChangeSet
  1.2105.2.1 06/01/31 18:46:44 tomas@poseidon.ndb.mysql.com +4 -0
  Bug #16466  	DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/ha_ndbcluster.h
    1.114 06/01/31 18:08:06 marty@linux.site +0 -0
    Auto merged

  sql/sql_show.cc
    1.293.1.2 06/01/31 18:46:37 tomas@poseidon.ndb.mysql.com +11 -0
    Bug #16466  	DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/handler.h
    1.185 06/01/31 18:46:37 tomas@poseidon.ndb.mysql.com +2 -0
    Bug #16466  	DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/ha_ndbcluster.h
    1.111.1.1 06/01/31 18:46:37 tomas@poseidon.ndb.mysql.com +1 -0
    Bug #16466  	DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

  sql/ha_ndbcluster.cc
    1.250 06/01/31 18:08:06 marty@linux.site +0 -0
    Auto merged

  sql/ha_ndbcluster.cc
    1.244.1.4 06/01/31 18:46:36 tomas@poseidon.ndb.mysql.com +27 -0
    Bug #16466  	DD: SHOW CREATE TABLE does not show TABLESPACE table_space1 STORAGE DISK

ChangeSet
  1.2110 06/01/31 18:31:37 mskold@mysql.com +4 -0
  Updated tests for WL#1892

  mysql-test/r/ndb_alter_table_stm.result
    1.2 06/01/31 18:31:19 mskold@mysql.com +1 -1
    Updated tests for WL#1892

  mysql-test/t/ndb_alter_table_stm.test
    1.2 06/01/31 18:29:45 mskold@mysql.com +1 -1
    Updated tests for WL#1892

  mysql-test/t/ndb_alter_table_row.test
    1.4 06/01/31 18:29:45 mskold@mysql.com +3 -0
    Updated tests for WL#1892

  mysql-test/r/ndb_alter_table_row.result
    1.4 06/01/31 18:29:45 mskold@mysql.com +2 -0
    Updated tests for WL#1892

ChangeSet
  1.2105.1.3 06/01/31 17:22:38 andrey@lmy004. +1 -0
  add the sql_mode to the enum with the fields
  post-push fix for bug#16407 (sql_mode discarded)
  WL#1034 (Internal CRON)

  sql/event.h
    1.17 06/01/31 17:22:28 andrey@lmy004. +1 -0
    add the sql_mode to the enum with the fields
    post-push fix for bug#16407 (sql_mode discarded)
    WL#1034 (Internal CRON)

ChangeSet
  1.2109 06/01/31 17:11:21 marty@linux.site +3 -0
  Enable WL#1892 for binlog, wrong signature

  sql/ha_ndbcluster_binlog.cc

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -