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
9c848528
Commit
9c848528
authored
Jan 29, 2021
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix of warning on windows
parent
496f7090
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/connect/mysql-test/connect/r/xml.result
storage/connect/mysql-test/connect/r/xml.result
+1
-2
storage/connect/mysql-test/connect/t/xml.test
storage/connect/mysql-test/connect/t/xml.test
+1
-0
No files found.
storage/connect/mysql-test/connect/r/xml.result
View file @
9c848528
...
...
@@ -374,8 +374,7 @@ INSERT INTO t1 VALUES (_cp1251 0xC0C1C2C3);
Warnings:
Level Warning
Code 1105
Message Com error: Impossible d'enregistrer le caractre dans le codage iso-8859-1.
Message warning about characters outside of iso-8859-1
INSERT INTO t1 VALUES ('&<>"\'');
SELECT node, hex(node) FROM t1;
node &<>"'
...
...
storage/connect/mysql-test/connect/t/xml.test
View file @
9c848528
...
...
@@ -300,6 +300,7 @@ CREATE TABLE t1 (node VARCHAR(50))
ENGINE
=
connect
TABLE_TYPE
=
xml
FILE_NAME
=
't1.xml'
OPTION_LIST
=
'xmlsup=domdoc,rownode=line,encoding=iso-8859-1'
;
INSERT
INTO
t1
VALUES
(
_latin1
0xC0C1C2C3
);
--
replace_regex
/.*
iso
-
8859
-
1.
*/
warning
about
characters
outside
of
iso
-
8859
-
1
/
INSERT
INTO
t1
VALUES
(
_cp1251
0xC0C1C2C3
);
INSERT
INTO
t1
VALUES
(
'&<>"\''
);
SELECT
node
,
hex
(
node
)
FROM
t1
;
...
...
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