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
NumericLiteral has a Format property that you can use to force how the
number is converted back to a string.
On Sep 7, 2015 10:06 AM, "erez l" [email protected] wrote:
when using:
builder.AddProjection(new Function("AVG", new Multiplication(new
NumericLiteral(1.0), new Column("col1"))), metric);
i'm getting :
SELECT AVG((1 * col1))
instead of :
SELECT AVG((1.0 * col1))
—
Reply to this email directly or view it on GitHub #23.
when using:
builder.AddProjection(new Function("AVG", new Multiplication(new NumericLiteral(1.0), new Column("col1"))), metric);
i'm getting :
SELECT AVG((1 * col1))
instead of :
SELECT AVG((1.0 * col1))
The text was updated successfully, but these errors were encountered: