bug: cannot create table with column with default value of NOW()
#9873
Labels
component/common
Common components, such as array, data chunk, expression.
component/func-expr
Support a SQL function or operator
type/bug
Something isn't working
Milestone
In #9609, we removed
NOW
from the expression proto as it'll never be used by the execution. However, Since we've recently supported non-NULL default values, it's possible that we specifyNOW
as the default value, then it must be persisted in the catalog.So we have to introduce
NOW
in proto again. But the fact that it corresponds to no backend execution function won't change.risingwave/src/frontend/src/expr/now.rs
Lines 31 to 41 in 771d561
The text was updated successfully, but these errors were encountered: