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
1026fa2f
Commit
1026fa2f
authored
Sep 01, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for spelling miss and eol junk
parent
544273f9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
client/mysqltest.c
client/mysqltest.c
+1
-1
mysql-test/t/information_schema.test
mysql-test/t/information_schema.test
+1
-1
mysql-test/t/rpl_slave_status.test
mysql-test/t/rpl_slave_status.test
+1
-1
mysql-test/t/sp.test
mysql-test/t/sp.test
+4
-4
mysql-test/t/view.test
mysql-test/t/view.test
+1
-1
No files found.
client/mysqltest.c
View file @
1026fa2f
...
...
@@ -2431,7 +2431,7 @@ int read_line(char *buf, int size)
break
;
case
R_LINE_START
:
/* Only accept start of comment if this is the first line in query */
if
((
*
lineno
==
start_lineno
)
&&
(
c
==
'#'
||
c
==
'-'
||
parsing_diabled
))
if
((
*
lineno
==
start_lineno
)
&&
(
c
==
'#'
||
c
==
'-'
||
parsing_di
s
abled
))
{
state
=
R_COMMENT
;
}
...
...
mysql-test/t/information_schema.test
View file @
1026fa2f
...
...
@@ -253,7 +253,7 @@ flush privileges;
# QQ a LOCK TABLES is in effect when selecting from
# QQ information_schema.tables.
--
disable_parsing
until
bug
is
fixes
--
disable_parsing
# until bug is fixed
delimiter
//;
create
procedure
px5
()
begin
...
...
mysql-test/t/rpl_slave_status.test
View file @
1026fa2f
# Test case for BUG #10780
source
include
/
master
-
slave
.
inc
source
include
/
master
-
slave
.
inc
;
connection
master
;
grant
replication
slave
on
*.*
to
rpl
@
127.0
.
0.1
identified
by
'rpl'
;
connection
slave
;
...
...
mysql-test/t/sp.test
View file @
1026fa2f
...
...
@@ -1213,7 +1213,7 @@ end|
select
f5
(
1
)
|
# This should generate an error about insuficient number of tables locked
# Now this crash server
--
disable_parsing
until
bug
#11394 fix
--
disable_parsing
#
until bug#11394 fix
--
error
1100
select
f5
(
2
)
|
# But now it simply miserably fails because we are trying to use the same
...
...
@@ -2469,7 +2469,7 @@ drop table t3|
# BUG#4318
#
--
disable_parsing
Don
't know if HANDLER commands can work with SPs, or at all..
--
disable_parsing
#
Don't know if HANDLER commands can work with SPs, or at all..
create
table
t3
(
s1
int
)
|
insert
into
t3
values
(
3
),
(
4
)
|
...
...
@@ -2836,7 +2836,7 @@ drop table t3|
# BUG#6022: Stored procedure shutdown problem with self-calling function.
#
--
disable_parsing
until
we
implement
support
for
recursive
stored
functions
.
--
disable_parsing
#
until we implement support for recursive stored functions.
--
disable_warnings
drop
function
if
exists
bug6022
|
--
enable_warnings
...
...
@@ -3762,7 +3762,7 @@ drop procedure if exists bug7088_1|
drop
procedure
if
exists
bug7088_2
|
--
enable_warnings
--
disable_parsing
temporarily
disabled
until
Bar
fixes
BUG
#11986
--
disable_parsing
#
temporarily disabled until Bar fixes BUG#11986
create
procedure
bug6063
()
lbel
:
begin
end
|
call
bug6063
()
|
...
...
mysql-test/t/view.test
View file @
1026fa2f
...
...
@@ -147,7 +147,7 @@ insert into t1 values (1), (2), (3);
create
view
v1
(
a
)
as
select
a
+
1
from
t1
;
create
view
v2
(
a
)
as
select
a
-
1
from
t1
;
--
disable_parsing
WL
#2486 should enable these tests
--
disable_parsing
#
WL #2486 should enable these tests
select
*
from
t1
natural
left
join
v1
;
select
*
from
v2
natural
left
join
t1
;
select
*
from
v2
natural
left
join
v1
;
...
...
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