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
f3890e94
Commit
f3890e94
authored
May 10, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
32024bfc
689cb24b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
BUILD/check-cpu
BUILD/check-cpu
+3
-0
mysql-test/t/range.test
mysql-test/t/range.test
+2
-0
sql/item_strfunc.h
sql/item_strfunc.h
+0
-1
No files found.
BUILD/check-cpu
View file @
f3890e94
...
@@ -55,6 +55,9 @@ case "$cpu_family--$model_name" in
...
@@ -55,6 +55,9 @@ case "$cpu_family--$model_name" in
*
Pentium
*
III
*
CPU
*
)
*
Pentium
*
III
*
CPU
*
)
cpu_flag
=
"pentium3"
;
cpu_flag
=
"pentium3"
;
;;
;;
*
Pentium
*
M
*
pro
*
)
cpu_flag
=
"pentium-m"
;
;;
*
Athlon
*
64
*
)
*
Athlon
*
64
*
)
cpu_flag
=
"athlon64"
;
cpu_flag
=
"athlon64"
;
cpu_flag_old
=
"athlon"
;
cpu_flag_old
=
"athlon"
;
...
...
mysql-test/t/range.test
View file @
f3890e94
...
@@ -437,6 +437,7 @@ explain select * from t1 where a='aaa' collate latin1_german1_ci;
...
@@ -437,6 +437,7 @@ explain select * from t1 where a='aaa' collate latin1_german1_ci;
drop
table
t1
;
drop
table
t1
;
# Test for BUG#9348 "result for WHERE A AND (B OR C) differs from WHERE a AND (C OR B)"
# Test for BUG#9348 "result for WHERE A AND (B OR C) differs from WHERE a AND (C OR B)"
--
disable_warnings
CREATE
TABLE
t1
(
CREATE
TABLE
t1
(
`CLIENT`
char
(
3
)
character
set
latin1
collate
latin1_bin
NOT
NULL
default
'000'
,
`CLIENT`
char
(
3
)
character
set
latin1
collate
latin1_bin
NOT
NULL
default
'000'
,
`ARG1`
char
(
3
)
character
set
latin1
collate
latin1_bin
NOT
NULL
default
''
,
`ARG1`
char
(
3
)
character
set
latin1
collate
latin1_bin
NOT
NULL
default
''
,
...
@@ -445,6 +446,7 @@ CREATE TABLE t1 (
...
@@ -445,6 +446,7 @@ CREATE TABLE t1 (
`FUNCTINT`
int
(
11
)
NOT
NULL
default
'0'
,
`FUNCTINT`
int
(
11
)
NOT
NULL
default
'0'
,
KEY
`VERI_CLNT~2`
(
`ARG1`
)
KEY
`VERI_CLNT~2`
(
`ARG1`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
enable_warnings
INSERT
INTO
t1
VALUES
(
'000'
,
' 0'
,
' 0'
,
'Text 001'
,
0
),
(
'000'
,
' 0'
,
' 1'
,
'Text 002'
,
0
),
INSERT
INTO
t1
VALUES
(
'000'
,
' 0'
,
' 0'
,
'Text 001'
,
0
),
(
'000'
,
' 0'
,
' 1'
,
'Text 002'
,
0
),
(
'000'
,
' 1'
,
' 2'
,
'Text 003'
,
0
),
(
'000'
,
' 2'
,
' 3'
,
'Text 004'
,
0
),
(
'000'
,
' 1'
,
' 2'
,
'Text 003'
,
0
),
(
'000'
,
' 2'
,
' 3'
,
'Text 004'
,
0
),
...
...
sql/item_strfunc.h
View file @
f3890e94
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
/* This file defines all string functions */
/* This file defines all string functions */
#ifdef USE_PRAGMA_INTERFACE
#ifdef USE_PRAGMA_INTERFACE
#error PRAGMA
#pragma interface
/* gcc class implementation */
#pragma interface
/* gcc class implementation */
#endif
#endif
...
...
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