Skip to content
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

Support default value when create tag and edge. #860

Merged
merged 9 commits into from
Nov 26, 2019
Merged

Support default value when create tag and edge. #860

merged 9 commits into from
Nov 26, 2019

Conversation

darionyaphet
Copy link
Contributor


VLOG(3) << "Insert " << fieldName << ":" << variantType
<< " at " << insertPosition;
values.insert(values.begin() + insertPosition, std::move(variantType));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in this function, maybe list for values is better than vector.

return Status::Error("Unknow type");
}
insertPosition++;
} else if (*props_[propsIndex] == fieldName) {
Copy link
Contributor

@wadeliuyi wadeliuyi Aug 29, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why here we can visit props_ by order, but in function check we visit it by find_if ?

return Status::Error("Wrong number of value");
auto schemaNumFields = schema->getNumFields();
size_t propsIndex = 0;
for (size_t schemaIndex = 0; schemaIndex < schemaNumFields; schemaIndex++) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe can do this in sub function

TagID tagId,
const std::string& field) {
cpp2::GetReq req;
static std::string defaultKey = "__default__";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the default value maybe can cached in client.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep Good Point ~

LOG(INFO) << "Create Edge " << req.get_edge_name() << ", edgeType " << edgeType;
auto columns = req.get_schema().get_columns();
for (auto& column : columns) {
if (column.__isset.default_value) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do it in sub function

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
propsIndex++;
insertPosition++;
} else {
insertPosition++;
Copy link
Contributor

@critical27 critical27 Aug 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why we can increase the position here? It seems you handle the situation when props_[propsIndex] mismatch with fieldName in if statement, and match in previous else if. Explain a little please.

@whitewum
Copy link
Contributor

whitewum commented Sep 2, 2019

Question: How to modify the default value? for the first time, I set int as 0; and the second time, I hope a int is -1?

@darionyaphet
Copy link
Contributor Author

Question: How to modify the default value? for the first time, I set int as 0; and the second time, I hope a int is -1?

According to MySQL, it could use ALTER TABLE to modify the default value's data type and value.

Maybe there are some related works for this PR for example: show create table with default info and alter default value

@jude-zhu jude-zhu requested a review from critical27 November 19, 2019 07:45
@darionyaphet darionyaphet added the ready-for-testing PR: ready for the CI test label Nov 19, 2019
@nebula-community-bot
Copy link
Member

Unit testing passed.

Copy link
Contributor

@critical27 critical27 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generally LGTM. What if we alter schema?

@nebula-community-bot
Copy link
Member

Unit testing passed.

Copy link
Contributor

@critical27 critical27 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@nebula-community-bot
Copy link
Member

Unit testing passed.

@dutor dutor merged commit 3b0afc3 into vesoft-inc:master Nov 26, 2019
yixinglu pushed a commit to yixinglu/nebula that referenced this pull request Feb 16, 2020
tong-hao pushed a commit to tong-hao/nebula that referenced this pull request Jun 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ready-for-testing PR: ready for the CI test
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

9 participants