Skip to content
/ server Public

Commit 9bfea48

Browse files
committed
Merge branch '11.4' into 11.8
2 parents 9749d71 + 054a893 commit 9bfea48

File tree

442 files changed

+15810
-3517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

442 files changed

+15810
-3517
lines changed

BUILD/compile-pentium64-asan-max

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ path=`dirname $0`
2323
#
2424

2525
extra_flags="$pentium64_cflags $debug_cflags -lasan -O -g -fsanitize=address -USAFEMALLOC -UFORCE_INIT_OF_VARS -Wno-uninitialized -Wno-maybe-uninitialized -DMYSQL_SERVER_SUFFIX=-asan-max"
26-
extra_configs="$pentium_configs $debug_configs $valgrind_configs $max_configs $disable_asan_plugins"
26+
extra_configs="$pentium_configs $debug_configs $valgrind_configs $max_configs $disable_asan_plugins --with-asan=ON"
2727
export LDFLAGS="-ldl"
2828

2929
. "$path/FINISH.sh"

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ MariaDB Server has a vibrant community contributing in a wide range of areas. Th
55
### Engage online with other community members
66
---
77
- [MariaDB on Zulip](https://mariadb.zulipchat.com/)
8-
- [maria-developers mailing list](http://launchpad.net/~maria-developers)
9-
- [maria-discuss mailing list](http://launchpad.net/~maria-discuss)
10-
- [maria-docs mailing list](http://launchpad.net/~maria-docs)
11-
- The MariaDB Foundation and MariaDB Corporation have a presence on Reddit, Twitter and Facebook. See the [social media page](https://mariadb.com/kb/en/mariadb/social-media/).
8+
- [maria-developers mailing list](https://lists.mariadb.org/postorius/lists/developers.lists.mariadb.org/)
9+
- [maria-discuss mailing list](https://lists.mariadb.org/postorius/lists/discuss.lists.mariadb.org/)
10+
- [maria-docs mailing list](https://lists.mariadb.org/postorius/lists/docs.lists.mariadb.org/)
11+
- The MariaDB Foundation and MariaDB Corporation have a presence on Reddit, Twitter and Facebook. See the [social media page](https://mariadb.com/docs/general-resources/community/joining-the-community).
1212

1313
### Help document MariaDB
1414
----
15-
- Contribute towards [documenting MariaDB Server](https://mariadb.com/kb/en/meta/writing-editing-library-articles/) and its ecosystem by adding new content or improving existing content.
16-
- [Translate](https://mariadb.com/kb/en/meta/translating-library-articles/) existing documentation.
15+
- Contribute towards [documenting MariaDB Server](https://mariadb.com/docs/general-resources/about/readme/contributing-documentation) and its ecosystem by adding new content or improving existing content.
16+
- [Translate](https://mariadb.com/docs/general-resources/about/readme/contributing-documentation) existing documentation.
1717

1818
### Help debug and develop MariaDB
1919
-----
@@ -44,4 +44,4 @@ New contributors can ask questions any time, but we will provide immediate feedb
4444
### Additional resources
4545
----
4646
- [MariaDB Foundation ](https://mariadb.org/)
47-
- [Knowledge Base](https://mariadb.com/kb/en/)
47+
- [MariaDB Documentation](https://mariadb.com/docs/)

CREDITS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ following services to the MariaDB community:
6666
- Bug fixing in MariaDB (for bugs that affects a large part of the community)
6767
- Building the official MariaDB binaries
6868
- Maintaining https://mariadb.org
69-
- Documenting MariaDB in the MariaDB Knowledge Base https://mariadb.com/kb
69+
- Documenting MariaDB in the MariaDB Documentation https://mariadb.com/kb
7070

7171
To be able to do the above we need help from corporations and individuals!
7272

Docs/mysql.info

Lines changed: 0 additions & 11 deletions
This file was deleted.

client/mysqldump.cc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ static my_bool verbose= 0, opt_no_create_info= 0, opt_no_data= 0, opt_no_data_m
142142
#define OPT_SYSTEM_STATS 32
143143
#define OPT_SYSTEM_TIMEZONES 64
144144
static const char *opt_system_type_values[]=
145-
{"all", "users", "plugins", "udfs", "servers", "stats", "timezones"};
145+
{"all", "users", "plugins", "udfs", "servers", "stats", "timezones", NullS};
146146
static TYPELIB opt_system_types=CREATE_TYPELIB_FOR(opt_system_type_values);
147147
static ulonglong opt_system= 0ULL;
148148
static my_bool insert_pat_inited= 0, debug_info_flag= 0, debug_check_flag= 0,
@@ -4489,6 +4489,11 @@ static void dump_table(const char *table, const char *db, const uchar *hash_key,
44894489
fprintf(md_result_file,"/*M!101100 SET @old_system_versioning_insert_history=@@session.system_versioning_insert_history, @@session.system_versioning_insert_history=1 */;\n");
44904490
check_io(md_result_file);
44914491
}
4492+
if (no_autocommit)
4493+
{
4494+
fprintf(md_result_file, "SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;\n");
4495+
check_io(md_result_file);
4496+
}
44924497
if (opt_lock)
44934498
{
44944499
fprintf(md_result_file,"LOCK TABLES %s WRITE;\n", opt_quoted_table);
@@ -4509,11 +4514,6 @@ static void dump_table(const char *table, const char *db, const uchar *hash_key,
45094514
if (opt_xml)
45104515
print_xml_tag(md_result_file, "\t", "\n", "table_data", "name=", table,
45114516
NullS);
4512-
if (no_autocommit)
4513-
{
4514-
fprintf(md_result_file, "set autocommit=0;\n");
4515-
check_io(md_result_file);
4516-
}
45174517

45184518
while ((row= mysql_fetch_row(res)))
45194519
{
@@ -4785,7 +4785,7 @@ static void dump_table(const char *table, const char *db, const uchar *hash_key,
47854785
}
47864786
if (no_autocommit)
47874787
{
4788-
fprintf(md_result_file, "commit;\n");
4788+
fprintf(md_result_file, "COMMIT;\nSET AUTOCOMMIT=@OLD_AUTOCOMMIT;\n");
47894789
check_io(md_result_file);
47904790
}
47914791
if (versioned && !opt_xml && opt_dump_history)

0 commit comments

Comments
 (0)