提交 3afd22a7 authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare beta release (possibly not today, but this weekend)

上级 4ab7caf6
......@@ -17,7 +17,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2014-04-05";
public static final String BUILD_DATE = "2014-04-11";
/**
* The build date is updated for each public release.
......@@ -27,12 +27,12 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public static final int BUILD_ID = 176;
public static final int BUILD_ID = 177;
/**
* The build id of the last stable release.
*/
public static final int BUILD_ID_STABLE = 175;
public static final int BUILD_ID_STABLE = 176;
/**
* Whether this is a snapshot version.
......
......@@ -33,7 +33,7 @@ import org.h2.util.New;
TODO:
Documentation
- rolling docs review: at "File Header"
- rolling docs review: at "Metadata Map"
- better document that writes are in background thread
- better document how to do non-unique indexes
- document pluggable store and OffHeapStore
......@@ -98,6 +98,8 @@ MVStore:
configured write delay to store changes
- compact* should also store uncommitted changes (if there are any)
- write a LSM-tree (log structured merge tree) utility on top of the MVStore
with blind writes and/or a bloom filter that
internally uses regular maps and merge sort
- StreamStore: split blocks similar to rsync crypto, where the split is made
"if the sum of the past 8196 bytes divides by 4096 with zero remainder"
- LIRS cache: maybe remove 'mask' field, and dynamically grow the arrays
......
......@@ -1188,6 +1188,10 @@ Creates an XML text element."
TO_CHAR(value [, formatString[, nlsParamString]])
","
Oracle-compatible TO_CHAR function that can format a timestamp, a number, or text."
"Functions (String)","TRANSLATE","
TRANSLATE(value , searchString, replacementString]])
","
Oracle-compatible TRANSLATE function that replaces a sequence of characters in a string with another set of characters."
"Functions (Time and Date)","CURRENT_DATE","
{ CURRENT_DATE [ () ] | CURDATE() | SYSDATE | TODAY }
","
......
......@@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES
(127, '1.4.177', '2014-04-11'),
(126, '1.3.176', '2014-04-05'),
(125, '1.3.175', '2014-01-18'),
(124, '1.3.174', '2013-10-19'),
......@@ -16,7 +17,6 @@ INSERT INTO VERSION VALUES
(120, '1.3.170', '2012-11-30'),
(119, '1.3.169', '2012-09-09'),
(118, '1.3.168', '2012-07-13'),
(117, '1.3.167', '2012-05-23'),
;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
......@@ -466,14 +466,10 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
prof.depth = 16;
prof.interval = 1;
prof.startCollecting();
TestPerformance.main("-init", "-db", "9", "-size", "1000");
prof.stopCollecting();
System.out.println(prof.getTop(30));
TestPerformance.main("-init", "-db", "1", "-size", "1000");
prof.stopCollecting();
System.out.println(prof.getTop(3));
System.out.println(prof.getTop(30));
TestPerformance.main("-init", "-db", "1", "-size", "1000");
TestPerformance.main("-init", "-db", "9", "-size", "1000");
}
System.out.println(TestBase.formatTime(
System.currentTimeMillis() - time) + " total");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论