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
150b837d
Commit
150b837d
authored
Jun 29, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved connections first in test, to reduce risk of connecting before servers are fully connected
parent
5f22c881
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
mysql-test/t/ndb_alter_table.test
mysql-test/t/ndb_alter_table.test
+7
-4
No files found.
mysql-test/t/ndb_alter_table.test
View file @
150b837d
...
...
@@ -7,6 +7,13 @@ DROP TABLE IF EXISTS t1;
drop
database
if
exists
mysqltest
;
--
enable_warnings
connect
(
con1
,
localhost
,
root
,,
test
);
connect
(
con2
,
localhost
,
root
,,
test
);
connection
con2
;
--
sleep
2
connection
con1
;
#
# Basic test to show that the ALTER TABLE
# is working
...
...
@@ -88,10 +95,6 @@ CREATE TABLE t1 (
INSERT
INTO
t1
VALUES
(
9410
,
9412
);
connect
(
con1
,
localhost
,,,
test
);
connect
(
con2
,
localhost
,,,
test
);
connection
con1
;
ALTER
TABLE
t1
ADD
COLUMN
c
int
not
null
;
select
*
from
t1
order
by
a
;
...
...
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