-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a unique database manager and integrate it with the queue #496
base: master
Are you sure you want to change the base?
Conversation
72f35ac
to
2092181
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just leaved some comments with column types doubts
{ | ||
queryFields.emplace_back(query.getColumn(i).getName(), | ||
ColumnTypeFromSQLiteType(query.getColumn(i).getType()), | ||
query.getColumn(i).getString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if the value is not a string?
ColumnValue(std::string name, const ColumnType type, std::string value) | ||
: ColumnName(std::move(name), type) | ||
, Value(std::move(value)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Type can be TEXT INTEGER or REAL but while constructing ColumValue it only accepts string. Can this be an issue?
ed2e1f6
to
ffd8732
Compare
Description
WIP
Tests