2005-01-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / Mono.Data.SqlExpressions / ChangeLog
1 2005-01-25  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * Expression.cs, ColumnReference.cs, BooleanExpression.cs,
4           Aggregation.cs, Literal.cs : added EvalBoolean() to avoid extraneous
5           boxing in RowFilter.
6
7 2005-01-20  Atsushi Enomoto  <atsushi@ximian.com>
8
9         * Numeric.cs : Fixed ToSameType(). It should let conversion result to
10           reference values.
11
12 2005-01-20  Atsushi Enomoto  <atsushi@ximian.com>
13
14         * Parser.jay : let's use debug flag when MONO_DEBUG_SQLEXPRESSIONS
15           environment variable is set.
16           Fixed substring() function. C# cast does not allow implicit
17           conversion from object.
18
19 2004-07-12 Umadevi S   <sumadevi@novell.com>
20         * Tokenizer.cs - read an Int64 from the text instead of Int32. Resolves
21 bug 61203
22
23                                                                                 
24 2004-06-17  Boris Kirzner <borisk@mainsoft.com>
25         *  Comparison.cs - use 'as' to avoid NullReferenceExeption in casting.
26
27 2004-05-13  Umadevi S <sumadevi@novell.com>
28         *  Literal.cs - made class internal
29
30 2004-05-12  Umadevi S <sumadevi@novell.com>
31         * Expression.cs, Functions.cs, In.cs, Like.cs, Parser.jay, StringFunctions.cs - made class/enum/interfaces internal
32
33 2004-05-12  Umadevi S <sumadevi@novell.com>
34         * BooleanExpression.cs,ColumnReference.cs, Comparision.cs - made class/enum internal
35
36 2004-05-12  Umadevi S <sumadevi@novell.com>
37         * ArthimeticExpression.cs - made class internal
38
39 2004-05012  Umadevi S <sumadevi@novell.com>
40         * Aggregation.cs - made class/enums/interfaces internal 
41
42 2004-05-05  Atsushi Enomoto <atsushi@ximian.com>
43
44         * ArithmeticExpressions.cs: avoid null exception on add operation.
45
46 2004-04-29  Juraj Skripsky <juraj@hotfeet.ch>
47
48         * Parser.jay: Fix rule for negative expressions.
49         Add precedence rules for '<' and '>'.
50
51 2004-04-28 Boris Kirzner <borisk@mainsoft.com>
52
53         * ColumnReference.cs : using DataRow _inExpressionEvaluation before accessing row value
54           to get an access to deleted rows also.
55
56 2004-04-22  Juraj Skripsky <juraj@hotfeet.ch>
57
58         * Parser.jay: Allow computed expressions on left-hand side of
59         "like" operator.
60         Correct ordering for "is null" rule ("NOT IS NULL" => "IS NOT NULL"). 
61
62 2004-04-20  Juraj Skripsky <juraj@hotfeet.ch>
63
64         * Tokenizer.cs (ReadNumber): Correctly consume decimal point
65         when reading numbers. Fixes bug #57251.
66
67 2004-03-31  Juraj Skripsky <juraj@hotfeet.ch>
68
69         * Parser.jay, ColumnReference.cs, Comparison.cs, Functions.cs,
70         Aggregation.cs : fix bugs exposed by DataColumnTest.cs.
71
72 2004-03-29  Juraj Skripsky <juraj@hotfeet.ch>
73
74         * Initial implementation.