Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
Practical-Cryptdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Zhaozhen
Practical-Cryptdb
Commits
c2bc07db
Commit
c2bc07db
authored
May 17, 2017
by
casualet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add dml error message
parent
9e4de23c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
503 additions
and
1 deletion
+503
-1
dml_handler.cc
main/dml_handler.cc
+3
-1
back1.sql
packages/tls/tpcc-mysql/back1.sql
+500
-0
No files found.
main/dml_handler.cc
View file @
c2bc07db
...
...
@@ -1317,7 +1317,9 @@ nextImpl(const ResType &res, const NextParams &nparams)
{
reenter
(
this
->
corot
)
{
yield
return
CR_QUERY_AGAIN
(
this
->
query
);
TEST_ErrPkt
(
res
.
success
(),
"DML query failed against remote database"
);
//crosses init here www.cplusplus.com/forum/beginner/48287/
//errormessage += "DML query failed against remote database";
TEST_ErrPkt
(
res
.
success
(),
this
->
query
+
"DML query failed against remote database"
);
yield
{
try
{
return
CR_RESULTS
(
Rewriter
::
decryptResults
(
res
,
this
->
rmeta
));
...
...
packages/tls/tpcc-mysql/back1.sql
0 → 100644
View file @
c2bc07db
This diff is collapsed.
Click to expand it.
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