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
1cec49c9
Commit
1cec49c9
authored
Jan 21, 2018
by
yiwenshao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use move
parent
2d415307
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
2 deletions
+2
-2
backFieldsToFiles
packages/tls/mysql_wrapper/backFieldsToFiles
+0
-0
backupSchema
packages/tls/mysql_wrapper/backupSchema
+0
-0
client
packages/tls/mysql_wrapper/client
+0
-0
escape
packages/tls/mysql_wrapper/escape
+0
-0
main
packages/tls/mysql_wrapper/main
+0
-0
MyConnect.cc
packages/tls/mysql_wrapper/mysqllib/MyConnect.cc
+2
-2
No files found.
packages/tls/mysql_wrapper/backFieldsToFiles
View file @
1cec49c9
No preview for this file type
packages/tls/mysql_wrapper/backupSchema
View file @
1cec49c9
No preview for this file type
packages/tls/mysql_wrapper/client
View file @
1cec49c9
No preview for this file type
packages/tls/mysql_wrapper/escape
View file @
1cec49c9
No preview for this file type
packages/tls/mysql_wrapper/main
View file @
1cec49c9
No preview for this file type
packages/tls/mysql_wrapper/mysqllib/MyConnect.cc
View file @
1cec49c9
...
...
@@ -112,7 +112,7 @@ Connect::execute(const std::string &query){
curLength
.
push_back
(
fieldLen
[
i
]);
}
}
rows
.
push_back
(
curRow
);
rows
.
push_back
(
std
::
move
(
curRow
)
);
lengths
.
push_back
(
curLength
);
}
...
...
@@ -171,7 +171,7 @@ DBResult::printFields(){
vector
<
vector
<
string
>>
DBResult
::
getRows
(){
return
rows
;
return
std
::
move
(
rows
)
;
}
...
...
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