assertSame(function, result);
}
@Test
public void testNormalizeSymbolTimestampLiteral() throws Exception {
Symbol result = normalize(
Literal.newLiteral("day"),
Literal.newLiteral(DataTypes.TIMESTAMP, DataTypes.TIMESTAMP.value("2014-02-25T13:38:01.123")));
assertLiteralSymbol(result, 1393286400000L, DataTypes.TIMESTAMP);
}