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
SELECT random(1, 10) AS r, table.value AS value FROM table;
random(a, b) is a function that returns a random value in the range from a to b. This function has the following signature: Signature::exact(vec![DataType::Int32, DataType::Int32],Volatility::Volatile)
Describe the bug
For functions whose signature contains Volatility::Volatile and arguments, invoke is called once and without _number_rows
To Reproduce
random(a, b) is a function that returns a random value in the range from a to b. This function has the following signature:
Signature::exact(vec![DataType::Int32, DataType::Int32], Volatility::Volatile)
Expected behavior
Received behavior
The text was updated successfully, but these errors were encountered: