Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
44 changed files
with
555 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| if(GIT_EXECUTABLE) | ||
| set(GIT_FOUND TRUE) | ||
| return() | ||
| endif() | ||
| if(DEFINED GIT_EXECUTABLE) | ||
| set(GIT_FOUND FALSE) | ||
| return() | ||
| endif() | ||
|
|
||
| set(orig_CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}) | ||
| unset(CMAKE_MODULE_PATH) | ||
| include(FindGit) | ||
| set(CMAKE_MODULE_PATH ${orig_CMAKE_MODULE_PATH}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,6 @@ | ||
| etc/mysql/mariadb.conf.d/connect.cnf | ||
| usr/lib/mysql/plugin/ha_connect.so | ||
| usr/share/mysql/Mongo2.jar | ||
| usr/share/mysql/Mongo3.jar | ||
| usr/share/mysql/JavaWrappers.jar | ||
| usr/share/mysql/JdbcInterface.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| connection node_2; | ||
| connection node_1; | ||
| SET SESSION WSREP_ON=0; | ||
| FLUSH TABLES WITH READ LOCK AND DISABLE CHECKPOINT; | ||
| SET SESSION WSREP_ON=1; | ||
| UNLOCK TABLES; | ||
| SET GLOBAL wsrep_ignore_apply_errors=1; | ||
| CREATE TABLE t1 (a CHAR(1)) engine=innodb; | ||
| CREATE TABLE t1 (a CHAR(1)) engine=innodb; | ||
| ERROR 42S01: Table 't1' already exists | ||
| SHOW PROCEDURE STATUS WHERE db = 'test'; | ||
| Db Name Type Definer Modified Created Security_type Comment character_set_client collation_connection Database Collation | ||
| SET GLOBAL read_only=1; | ||
| SET GLOBAL wsrep_ignore_apply_errors=DEFAULT; | ||
| SET GLOBAL read_only=DEFAULT; | ||
| DROP TABLE t1; |
Oops, something went wrong.