datajoint / datajoint-docs-original

https://docs.datajoint.org
Other
2 stars 13 forks source link

`inserti` is not mentioned in the MATLAB documentation. #212

Open shenshan opened 5 years ago

shenshan commented 5 years ago

"The optional parameter command can be either IGNORE or REPLACE. Duplicates, unmatched attributes, or missing required attributes will cause insert errors, unless command is specified."

This feature is not working in the MATLAB version. Also, inserti is not mentioned.

dimitri-yatsenko commented 5 years ago

I checked and seems to be working. table.inserti(tuples) is just synonymous to table.insert(tuples, 'IGNORE'). The documentation is correct.

shenshan commented 5 years ago

ok i think the description of the syntax should be more specific. table.insert(tuples, 'IGNORE'), only mentioning command is just confusing.