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
1e9ecf99
Commit
1e9ecf99
authored
Mar 23, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
result file updates, message format changes
parent
2cefd1f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
mysql-test/r/ndb_single_user.result
mysql-test/r/ndb_single_user.result
+11
-11
No files found.
mysql-test/r/ndb_single_user.result
View file @
1e9ecf99
use test;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
create table t1 (a int key, b int unique, c int) engine ndb;
ERROR HY000: Can't create table '
./test/t1.frm
' (errno: 299)
ERROR HY000: Can't create table '
test.t1
' (errno: 299)
create table t1 (a int key, b int unique, c int) engine ndb;
insert into t1 values (1,1,0),(2,2,0),(3,3,0),(4,4,0),(5,5,0),(6,6,0),(7,7,0),(8,8,0),(9,9,0),(10,10,0);
create table t2 as select * from t1;
...
...
@@ -28,21 +28,21 @@ insert into t1 select * from t2;
drop table t1;
ERROR 42S02: Unknown table 't1'
create index new_index on t1 (c);
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
insert into t1 values (1,1,0),(2,2,0),(3,3,0),(4,4,0),(5,5,0),(6,6,0),(7,7,0),(8,8,0),(9,9,0),(10,10,0);
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
select * from t1 where a = 1;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
select * from t1 where b = 4;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
update t1 set b=102 where a = 2;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
update t1 set b=103 where b = 3;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
update t1 set b=b+100;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
update t1 set b=b+100 where a > 7;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
BEGIN;
update t1 set b=b+100 where a=1;
BEGIN;
...
...
@@ -50,7 +50,7 @@ update t1 set b=b+100 where a=2;
update t1 set b=b+100 where a=3;
COMMIT;
update t1 set b=b+100 where a=4;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
ndbcluster
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from
NDBCLUSTER
COMMIT;
ERROR HY000: Got error 4350 'Transaction already aborted' from
ndbcluster
ERROR HY000: Got error 4350 'Transaction already aborted' from
NDBCLUSTER
drop table 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