blob: 848b340f2431d566a4fb439a0e2ef9e4adac42f3 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
====================================================================================
File name
---------
timestamp_and_vendor.patch
Description
-----------
removes the tstamp/_tmpstamp construct from the build.xml (not supported by
some ant versions)
Issue
-----
http://www.openoffice.org/issues/show_bug.cgi?id=51409
Build breaks in hsqldb
====================================================================================
File name
---------
unique_constraint_violation_error.patch
Description
-----------
provides a better error message when violating a unique index or (primary)
constraint
Issue
-----
http://www.openoffice.org/issues/show_bug.cgi?id=65426
"Database frontend: Confusing errormessage when entering duplicate primary key"
====================================================================================
File name
---------
text_table_double_quotes.patch
Description
-----------
fixes the problem that when inserting double quotes into a text table, the table
becomes unreadable under some circumstances.
Issue
-----
http://www.openoffice.org/issues/show_bug.cgi?id=70841
writing certain data into bugdoc HSQL Text Table renders the complete database inaccessible
====================================================================================
File name
---------
view_asterisk_replacement.patch
Description
-----------
modifies HSQLDB so that views behave more standard-conform. That is, per SQL standard
views are requested to return the columns as they existed at the time of definition
of the view. I.e., if the table gets new columns later on, they're not included in the
view.
This indirectly fixes the below issue.
Issue
-----
http://www.openoffice.org/issues/show_bug.cgi?id=78296
adding a column to a HSQLDB table which is referred in a view renders the database useless
====================================================================================
File name
---------
select_into.patch
Description
-----------
Fixes the problem that quoted table names which are created with SELECT INTO command get the correct
table type when asking the database meta data for it.
Issue
-----
http://www.openoffice.org/issues/show_bug.cgi?id=70160
Table created with SELECT INTO TABLE command is not visible
====================================================================================
|