ChangeLog 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. 2004-07-12 Umadevi S <[email protected]>
  2. * Tokenizer.cs - read an Int64 from the text instead of Int32. Resolves
  3. bug 61203
  4. 2004-06-17 Boris Kirzner <[email protected]>
  5. * Comparison.cs - use 'as' to avoid NullReferenceExeption in casting.
  6. 2004-05-13 Umadevi S <[email protected]>
  7. * Literal.cs - made class internal
  8. 2004-05-12 Umadevi S <[email protected]>
  9. * Expression.cs, Functions.cs, In.cs, Like.cs, Parser.jay, StringFunctions.cs - made class/enum/interfaces internal
  10. 2004-05-12 Umadevi S <[email protected]>
  11. * BooleanExpression.cs,ColumnReference.cs, Comparision.cs - made class/enum internal
  12. 2004-05-12 Umadevi S <[email protected]>
  13. * ArthimeticExpression.cs - made class internal
  14. 2004-05012 Umadevi S <[email protected]>
  15. * Aggregation.cs - made class/enums/interfaces internal
  16. 2004-05-05 Atsushi Enomoto <[email protected]>
  17. * ArithmeticExpressions.cs: avoid null exception on add operation.
  18. 2004-04-29 Juraj Skripsky <[email protected]>
  19. * Parser.jay: Fix rule for negative expressions.
  20. Add precedence rules for '<' and '>'.
  21. 2004-04-28 Boris Kirzner <[email protected]>
  22. * ColumnReference.cs : using DataRow _inExpressionEvaluation before accessing row value
  23. to get an access to deleted rows also.
  24. 2004-04-22 Juraj Skripsky <[email protected]>
  25. * Parser.jay: Allow computed expressions on left-hand side of
  26. "like" operator.
  27. Correct ordering for "is null" rule ("NOT IS NULL" => "IS NOT NULL").
  28. 2004-04-20 Juraj Skripsky <[email protected]>
  29. * Tokenizer.cs (ReadNumber): Correctly consume decimal point
  30. when reading numbers. Fixes bug #57251.
  31. 2004-03-31 Juraj Skripsky <[email protected]>
  32. * Parser.jay, ColumnReference.cs, Comparison.cs, Functions.cs,
  33. Aggregation.cs : fix bugs exposed by DataColumnTest.cs.
  34. 2004-03-29 Juraj Skripsky <[email protected]>
  35. * Initial implementation.