-
Notifications
You must be signed in to change notification settings - Fork 168
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
Set subtable #116
Set subtable #116
Conversation
…et_subtable from langbindhelper. output to cerr excepion text in test_transactions.cpp (if an exception was thrown). updated dyn_table_ref.yaml (not sure if this is the right way to do it) with an extra line below the lines with set_* method headers.
+1 |
@@ -587,6 +587,7 @@ CATEGORIES : | |||
void set_string(size_t column_ndx, size_t row_ndx, StringData value); | |||
void set_binary(size_t column_ndx, size_t row_ndx, BinaryData value); | |||
void set_mixed(size_t column_ndx, size_t row_ndx, Mixed value); | |||
void set_subtable(siz_t column_ndx, size_t row_ndx, const Table*); |
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.
You also need to add two lines:
- g_dyn_table_set_subtable:
NAME : set_subtable
just below the line: "NAME: set_mixed"
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.
I'll do that.
Shouldn't TableView have it as well? |
You also need to add a line in doc/changes.txt whenever a new feature is implemented. |
\cc @kspangsege
added cerr of exception text in test_transactions unit test.
made set_subtable public in table
removed set_subtable from langbindhelper