Catalytic
Catalytic copied to clipboard
Implement TIMESTAMP/TIMEOUT for inserts
The ORM does not support TIMESTAMP and TIMEOUTs for inserts yet: https://docs.scylladb.com/getting-started/dml/#insert-statement.
This can be implemented by following these steps:
- Add the new method name in query_ident.rs. The query ident mod can be used by other users to interact with always up to date methods, so they never have to type the method names themselves and run into run time errors
- Add the new insert method somewhere in write_struct.rs, after the insert method (see line 177).
- Add a test in lib.rs. I want each new change to be tested.
To see the changes of the generated code easily: