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
b93a5c5f
Commit
b93a5c5f
authored
Aug 14, 2006
by
brian@zim.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated row result, and fix for Windows build.
parent
af443c2d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
8 deletions
+5
-8
CMakeLists.txt
CMakeLists.txt
+0
-3
mysql-test/r/binlog_row_binlog.result
mysql-test/r/binlog_row_binlog.result
+3
-3
mysql-test/r/multi_update.result
mysql-test/r/multi_update.result
+1
-1
mysql-test/t/multi_update.test
mysql-test/t/multi_update.test
+1
-1
No files found.
CMakeLists.txt
View file @
b93a5c5f
...
@@ -131,9 +131,6 @@ ADD_SUBDIRECTORY(client)
...
@@ -131,9 +131,6 @@ ADD_SUBDIRECTORY(client)
IF
(
WITH_ARCHIVE_STORAGE_ENGINE
)
IF
(
WITH_ARCHIVE_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
storage/archive
)
ADD_SUBDIRECTORY
(
storage/archive
)
ENDIF
(
WITH_ARCHIVE_STORAGE_ENGINE
)
ENDIF
(
WITH_ARCHIVE_STORAGE_ENGINE
)
IF
(
WITH_BERKELEY_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
storage/bdb
)
ENDIF
(
WITH_BERKELEY_STORAGE_ENGINE
)
IF
(
WITH_BLACKHOLE_STORAGE_ENGINE
)
IF
(
WITH_BLACKHOLE_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
storage/blackhole
)
ADD_SUBDIRECTORY
(
storage/blackhole
)
ENDIF
(
WITH_BLACKHOLE_STORAGE_ENGINE
)
ENDIF
(
WITH_BLACKHOLE_STORAGE_ENGINE
)
...
...
mysql-test/r/binlog_row_binlog.result
View file @
b93a5c5f
drop table if exists t1, t2;
drop table if exists t1, t2;
reset master;
reset master;
create table t1 (a int) engine=
b
db;
create table t1 (a int) engine=
inno
db;
create table t2 (a int) engine=innodb;
create table t2 (a int) engine=innodb;
begin;
begin;
insert t1 values (5);
insert t1 values (5);
...
@@ -10,12 +10,12 @@ insert t2 values (5);
...
@@ -10,12 +10,12 @@ insert t2 values (5);
commit;
commit;
show binlog events from 102;
show binlog events from 102;
Log_name Pos Event_type Server_id End_log_pos Info
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Query 1 # use `test`; create table t1 (a int) engine=
b
db
master-bin.000001 # Query 1 # use `test`; create table t1 (a int) engine=
inno
db
master-bin.000001 # Query 1 # use `test`; create table t2 (a int) engine=innodb
master-bin.000001 # Query 1 # use `test`; create table t2 (a int) engine=innodb
master-bin.000001 # Query 1 # use `test`; BEGIN
master-bin.000001 # Query 1 # use `test`; BEGIN
master-bin.000001 # Table_map 1 # table_id: # (test.t1)
master-bin.000001 # Table_map 1 # table_id: # (test.t1)
master-bin.000001 # Write_rows 1 # table_id: # flags: STMT_END_F
master-bin.000001 # Write_rows 1 # table_id: # flags: STMT_END_F
master-bin.000001 #
Query 1 # use `test`; COMMIT
master-bin.000001 #
Xid 1 # COMMIT /* xid= */
master-bin.000001 # Query 1 # use `test`; BEGIN
master-bin.000001 # Query 1 # use `test`; BEGIN
master-bin.000001 # Table_map 1 # table_id: # (test.t2)
master-bin.000001 # Table_map 1 # table_id: # (test.t2)
master-bin.000001 # Write_rows 1 # table_id: # flags: STMT_END_F
master-bin.000001 # Write_rows 1 # table_id: # flags: STMT_END_F
...
...
mysql-test/r/multi_update.result
View file @
b93a5c5f
...
@@ -492,7 +492,7 @@ create table t2 like t1;
...
@@ -492,7 +492,7 @@ create table t2 like t1;
insert into t2 select * from t1;
insert into t2 select * from t1;
delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
drop table t1,t2;
drop table t1,t2;
create table t1 ( c char(8) not null ) engine=
b
db;
create table t1 ( c char(8) not null ) engine=
inno
db;
insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
alter table t1 add b char(8) not null;
alter table t1 add b char(8) not null;
...
...
mysql-test/t/multi_update.test
View file @
b93a5c5f
...
@@ -485,7 +485,7 @@ delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
...
@@ -485,7 +485,7 @@ delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
--
disable_warnings
--
disable_warnings
create
table
t1
(
c
char
(
8
)
not
null
)
engine
=
b
db
;
create
table
t1
(
c
char
(
8
)
not
null
)
engine
=
inno
db
;
--
enable_warnings
--
enable_warnings
insert
into
t1
values
(
'0'
),(
'1'
),(
'2'
),(
'3'
),(
'4'
),(
'5'
),(
'6'
),(
'7'
),(
'8'
),(
'9'
);
insert
into
t1
values
(
'0'
),(
'1'
),(
'2'
),(
'3'
),(
'4'
),(
'5'
),(
'6'
),(
'7'
),(
'8'
),(
'9'
);
...
...
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