Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
18edb095
Commit
18edb095
authored
May 25, 2024
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing mariadb-install-db.exe failure on Windows (Illegal mix of collations)
parent
283b9285
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
1 deletion
+9
-1
scripts/fill_help_tables.sql
scripts/fill_help_tables.sql
+1
-1
scripts/mariadb_performance_tables.sql
scripts/mariadb_performance_tables.sql
+2
-0
scripts/mariadb_system_tables.sql
scripts/mariadb_system_tables.sql
+2
-0
scripts/mariadb_system_tables_data.sql
scripts/mariadb_system_tables_data.sql
+2
-0
scripts/mariadb_test_db.sql
scripts/mariadb_test_db.sql
+2
-0
No files found.
scripts/fill_help_tables.sql
View file @
18edb095
...
...
@@ -22,7 +22,7 @@
-- mysql -u root -p mysql < file_name
set names 'utf8'
;
SET NAMES utf8mb3 COLLATE utf8mb3_general_ci
;
set sql_log_bin = 0;
scripts/mariadb_performance_tables.sql
View file @
18edb095
...
...
@@ -9,6 +9,8 @@
-- performance schema engine.
--
SET
NAMES
latin1
COLLATE
latin1_swedish_ci
;
set
@
have_old_pfs
=
(
select
count
(
*
)
from
information_schema
.
schemata
where
schema_name
=
'performance_schema'
);
SET
@
cmd
=
"SET @broken_tables = (select count(*) from information_schema.tables where engine != 'PERFORMANCE_SCHEMA' and table_schema='performance_schema')"
;
...
...
scripts/mariadb_system_tables.sql
View file @
18edb095
...
...
@@ -18,6 +18,8 @@
-- The system tables of MySQL Server
--
SET
NAMES
latin1
COLLATE
latin1_swedish_ci
;
set
sql_mode
=
''
;
set
@
orig_storage_engine
=@@
default_storage_engine
;
...
...
scripts/mariadb_system_tables_data.sql
View file @
18edb095
...
...
@@ -17,6 +17,8 @@
-- The initial data for system tables of MySQL Server
--
SET
NAMES
latin1
COLLATE
latin1_swedish_ci
;
-- When setting up a "cross bootstrap" database (e.g., creating data on a Unix
-- host which will later be included in a Windows zip file), any lines
-- containing "@current_hostname" are filtered out by mysql_install_db.
...
...
scripts/mariadb_test_db.sql
View file @
18edb095
...
...
@@ -13,6 +13,8 @@
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
SET
NAMES
latin1
COLLATE
latin1_swedish_ci
;
CREATE
DATABASE
IF
NOT
EXISTS
test
CHARACTER
SET
latin1
COLLATE
latin1_swedish_ci
;
--- Fill "db" table with default grants for anyone to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment