Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « Mono.Data.SqlExpressions « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4266e2d3cdf9aba523e0d9842f49bc2e651727a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
2004-06-17  Boris Kirzner <borisk@mainsoft.com>
        *  Comparison.cs - use 'as' to avoid NullReferenceExeption in casting.

2004-05-13  Umadevi S <sumadevi@novell.com>
        *  Literal.cs - made class internal

2004-05-12  Umadevi S <sumadevi@novell.com>
        * Expression.cs, Functions.cs, In.cs, Like.cs, Parser.jay, StringFunctions.cs - made class/enum/interfaces internal

2004-05-12  Umadevi S <sumadevi@novell.com>
        * BooleanExpression.cs,ColumnReference.cs, Comparision.cs - made class/enum internal

2004-05-12  Umadevi S <sumadevi@novell.com>
        * ArthimeticExpression.cs - made class internal

2004-05012  Umadevi S <sumadevi@novell.com>
	* Aggregation.cs - made class/enums/interfaces internal 

2004-05-05  Atsushi Enomoto <atsushi@ximian.com>

	* ArithmeticExpressions.cs: avoid null exception on add operation.

2004-04-29  Juraj Skripsky <juraj@hotfeet.ch>

	* Parser.jay: Fix rule for negative expressions.
	Add precedence rules for '<' and '>'.

2004-04-28 Boris Kirzner <borisk@mainsoft.com>

	* ColumnReference.cs : using DataRow _inExpressionEvaluation before accessing row value
	  to get an access to deleted rows also.

2004-04-22  Juraj Skripsky <juraj@hotfeet.ch>

	* Parser.jay: Allow computed expressions on left-hand side of
	"like" operator.
	Correct ordering for "is null" rule ("NOT IS NULL" => "IS NOT NULL"). 

2004-04-20  Juraj Skripsky <juraj@hotfeet.ch>

	* Tokenizer.cs (ReadNumber): Correctly consume decimal point
	when reading numbers. Fixes bug #57251.

2004-03-31  Juraj Skripsky <juraj@hotfeet.ch>

	* Parser.jay, ColumnReference.cs, Comparison.cs, Functions.cs,
	Aggregation.cs : fix bugs exposed by DataColumnTest.cs.

2004-03-29  Juraj Skripsky <juraj@hotfeet.ch>

	* Initial implementation.