You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
todo!("Implement inequality check for TimeStampTZ")
@iajoiner I must have forgotten about these when we wrapped up timestamp, sorry about that. What are the above lines used for? Because right now, full provable inequality is supported on timestamp-related queries:
"SELECT * FROM table WHERE times > timestamp '1970-01-01T00:00:00Z';",
"SELECT * FROM table WHERE times < timestamp '1970-01-01T00:00:00Z';",
"SELECT * FROM table WHERE times >= timestamp '1970-01-01T00:00:00Z';",
"SELECT * FROM table WHERE times <= timestamp '1970-01-01T00:00:00Z';",
"SELECT * FROM table WHERE times = timestamp '1970-01-01T00:00:00Z';",
All succeed without incident. Should I fill out these missing implementations marked as todo!()?
The text was updated successfully, but these errors were encountered:
If I'm not mistaken, these are only used in postprocessing, which is why those queries still work: they don't use postprocessing.
Regardless, these should be filled out.
Dustin-Ray
changed the title
missing ge, eq, ineq implementations for TimeStampTZ
missing ge, eq, ineq postprocessing implementations for TimeStampTZ
Oct 2, 2024
Here:
sxt-proof-of-sql/crates/proof-of-sql/src/base/database/owned_column_operation.rs
Line 182 in 6740144
Here:
sxt-proof-of-sql/crates/proof-of-sql/src/base/database/owned_column_operation.rs
Line 316 in 6740144
And Here:
sxt-proof-of-sql/crates/proof-of-sql/src/base/database/owned_column_operation.rs
Line 450 in 6740144
@iajoiner I must have forgotten about these when we wrapped up timestamp, sorry about that. What are the above lines used for? Because right now, full provable inequality is supported on timestamp-related queries:
All succeed without incident. Should I fill out these missing implementations marked as
todo!()
?The text was updated successfully, but these errors were encountered: