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
aa130244
Commit
aa130244
authored
Jan 18, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added possibility to use --error <name> instead of --error <number>
The old syntax works as well. WL#2356.
parent
9f93b015
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
11 deletions
+46
-11
client/mysqltest.c
client/mysqltest.c
+43
-8
mysql-test/t/create.test
mysql-test/t/create.test
+1
-1
mysql-test/t/select.test
mysql-test/t/select.test
+2
-2
No files found.
client/mysqltest.c
View file @
aa130244
...
...
@@ -123,6 +123,17 @@ typedef struct
}
code
;
}
match_err
;
typedef
struct
{
const
char
*
name
;
long
code
;
}
st_error
;
static
st_error
global_error
[]
=
{
#include <mysqld_ername.h>
{
0
,
0
}
};
static
match_err
global_expected_errno
[
MAX_EXPECTED_ERRORS
];
static
uint
global_expected_errors
;
...
...
@@ -1340,6 +1351,7 @@ static uint get_errcodes(match_err *to,struct st_query* q)
{
char
*
p
=
q
->
first_argument
;
uint
count
=
0
;
DBUG_ENTER
(
"get_errcodes"
);
if
(
!*
p
)
...
...
@@ -1350,19 +1362,41 @@ static uint get_errcodes(match_err *to,struct st_query* q)
if
(
*
p
==
'S'
)
{
/* SQLSTATE string */
int
i
;
p
++
;
for
(
i
=
0
;
my_isalnum
(
charset_info
,
*
p
)
&&
i
<
SQLSTATE_LENGTH
;
p
++
,
i
++
)
to
[
count
].
code
.
sqlstate
[
i
]
=
*
p
;
to
[
count
].
code
.
sqlstate
[
i
]
=
'\0'
;
char
*
end
=
++
p
+
SQLSTATE_LENGTH
;
char
*
to_ptr
=
to
[
count
].
code
.
sqlstate
;
for
(;
my_isalnum
(
charset_info
,
*
p
)
&&
p
!=
end
;
p
++
)
*
to_ptr
++=
*
p
;
*
to_ptr
=
0
;
to
[
count
].
type
=
ERR_SQLSTATE
;
}
else
if
(
*
p
==
'E'
)
{
/* SQL error as string */
st_error
*
e
=
global_error
;
char
*
start
=
p
++
;
for
(;
*
p
==
'_'
||
my_isalnum
(
charset_info
,
*
p
);
p
++
)
;
for
(;
e
->
name
;
e
++
)
{
if
(
!
strncmp
(
start
,
e
->
name
,
(
int
)
(
p
-
start
)))
{
to
[
count
].
code
.
errnum
=
(
uint
)
e
->
code
;
to
[
count
].
type
=
ERR_ERRNO
;
break
;
}
}
if
(
!
e
->
name
)
die
(
"Unknown SQL error '%s'
\n
"
,
start
);
}
else
{
long
val
;
p
=
str2int
(
p
,
10
,(
long
)
INT_MIN
,
(
long
)
INT_MAX
,
&
val
);
if
(
p
==
NULL
)
die
(
"Invalid argument in %s
\n
"
,
q
->
query
);
if
(
!
(
p
=
str2int
(
p
,
10
,(
long
)
INT_MIN
,
(
long
)
INT_MAX
,
&
val
))
)
die
(
"Invalid argument in %s
\n
"
,
q
->
query
);
to
[
count
].
code
.
errnum
=
(
uint
)
val
;
to
[
count
].
type
=
ERR_ERRNO
;
}
...
...
@@ -2855,6 +2889,7 @@ static int normal_handle_error(const char *query, struct st_query *q,
mysql_error
(
mysql
));
DBUG_RETURN
(
0
);
}
return
0
;
/* Keep compiler happy */
}
...
...
mysql-test/t/create.test
View file @
aa130244
...
...
@@ -294,7 +294,7 @@ select * from t2;
create
table
t3
like
t1
;
--
error
1050
create
table
t3
like
mysqltest
.
t3
;
--
error
1044
,
1
--
error
ER_DBACCESS_DENIED_ERROR
,
1
create
table
non_existing_database
.
t1
like
t1
;
--
error
1051
create
table
t3
like
non_existing_table
;
...
...
mysql-test/t/select.test
View file @
aa130244
...
...
@@ -1761,9 +1761,9 @@ DO benchmark(100,1+1),1,1;
# Bug #6449: do default;
#
--
error
1064
--
error
ER_PARSE_ERROR
do
default
;
--
error
1054
--
error
ER_BAD_FIELD_ERROR
do
foobar
;
#
...
...
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