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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6a0faa9a
Commit
6a0faa9a
authored
Mar 01, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql-test/t/bdb-crash.test
make sure we get correct data
parent
1ba47390
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
mysql-test/r/bdb-crash.result
mysql-test/r/bdb-crash.result
+3
-0
mysql-test/t/bdb-crash.test
mysql-test/t/bdb-crash.test
+3
-2
No files found.
mysql-test/r/bdb-crash.result
0 → 100644
View file @
6a0faa9a
ChargeID ServiceID ChargeDate ChargeAmount FedTaxes ProvTaxes ChargeStatus ChargeAuthorizationMessage ChargeComment ChargeTimeStamp
1 1 2001-03-01 1.00 1.00 1.00 New blablabla NULL now
2 1 2001-03-01 1.00 1.00 1.00 New NULL NULL now
mysql-test/t/bdb-crash.test
View file @
6a0faa9a
...
@@ -20,7 +20,7 @@ DEFAULT 'New' NOT NULL,
...
@@ -20,7 +20,7 @@ DEFAULT 'New' NOT NULL,
BEGIN
;
BEGIN
;
INSERT
INTO
tblCharge
INSERT
INTO
tblCharge
VALUES
(
NULL
,
1
,
CURRENT_DATE
(),
1
,
1
,
1
,
'New'
,
NULL
,
NULL
,
UNIX_TIMESTAMP
(
NOW
())
);
VALUES
(
NULL
,
1
,
'2001-03-01'
,
1
,
1
,
1
,
'New'
,
NULL
,
NULL
,
'now'
);
COMMIT
;
COMMIT
;
BEGIN
;
BEGIN
;
...
@@ -29,5 +29,6 @@ ChargeID = 1;
...
@@ -29,5 +29,6 @@ ChargeID = 1;
COMMIT
;
COMMIT
;
INSERT
INTO
tblCharge
INSERT
INTO
tblCharge
VALUES
(
NULL
,
1
,
CURRENT_DATE
(),
1
,
1
,
1
,
'New'
,
NULL
,
NULL
,
UNIX_TIMESTAMP
(
NOW
()));
VALUES
(
NULL
,
1
,
'2001-03-01'
,
1
,
1
,
1
,
'New'
,
NULL
,
NULL
,
'now'
);
select
*
from
tblCharge
;
drop
table
tblCharge
;
drop
table
tblCharge
;
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