提交 a2f52638 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation

上级 060abfca
...@@ -423,7 +423,7 @@ CREATE AGGREGATE MEDIAN FOR ""com.acme.db.Median"" ...@@ -423,7 +423,7 @@ CREATE AGGREGATE MEDIAN FOR ""com.acme.db.Median""
" "
"Commands (DDL)","CREATE ALIAS"," "Commands (DDL)","CREATE ALIAS","
CREATE ALIAS [ IF NOT EXISTS ] newFunctionAliasName [ DETERMINISTIC ] CREATE ALIAS [ IF NOT EXISTS ] newFunctionAliasName [ DETERMINISTIC ]
[ NOBUFFER ] { FOR classAndMethodName | AS sourceCodeString } [ NOBUFFER ] { FOR classAndMethodName | AS sourceCodeString }
"," ","
Creates a new function alias. If this is a ResultSet returning function, Creates a new function alias. If this is a ResultSet returning function,
...@@ -517,7 +517,7 @@ CREATE INDEX IDXNAME ON TEST(NAME) ...@@ -517,7 +517,7 @@ CREATE INDEX IDXNAME ON TEST(NAME)
" "
"Commands (DDL)","CREATE LINKED TABLE"," "Commands (DDL)","CREATE LINKED TABLE","
CREATE [ FORCE ] [ [ GLOBAL | LOCAL ] TEMPORARY ] CREATE [ FORCE ] [ [ GLOBAL | LOCAL ] TEMPORARY ]
LINKED TABLE [ IF NOT EXISTS ] LINKED TABLE [ IF NOT EXISTS ]
name ( driverString, urlString, userString, passwordString, name ( driverString, urlString, userString, passwordString,
[ originalSchemaString, ] originalTableString ) [ EMIT UPDATES | READONLY ] [ originalSchemaString, ] originalTableString ) [ EMIT UPDATES | READONLY ]
......
...@@ -18,7 +18,7 @@ Change Log ...@@ -18,7 +18,7 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>Issue 565: MVStore: concurrently adding LOB objects <ul><li>Issue 565: MVStore: concurrently adding LOB objects
(with MULTI_THREADED option) resulted in a NullPointerException. (with MULTI_THREADED option) resulted in a NullPointerException.
</li><li>MVStore: reduced dependencies to other H2 classes. </li><li>MVStore: reduced dependencies to other H2 classes.
</li><li>There was a way to prevent a database from being re-opened, </li><li>There was a way to prevent a database from being re-opened,
...@@ -41,14 +41,14 @@ Change Log ...@@ -41,14 +41,14 @@ Change Log
Referential integrity constraints sometimes used the wrong index. Referential integrity constraints sometimes used the wrong index.
</li><li>MVStore: the ObjectDataType comparison method was incorrect if one </li><li>MVStore: the ObjectDataType comparison method was incorrect if one
key was Serializable and the other was of a common class. key was Serializable and the other was of a common class.
</li><li>Recursive queries with many result rows (more than the setting "max_memory_rows") </li><li>Recursive queries with many result rows (more than the setting "max_memory_rows")
did not work correctly. did not work correctly.
</li><li>The license has changed to MPL 2.0 + EPL 1.0. </li><li>The license has changed to MPL 2.0 + EPL 1.0.
</li><li>MVStore: temporary tables from result sets could survive re-opening a database, </li><li>MVStore: temporary tables from result sets could survive re-opening a database,
which could result in a ClassCastException. which could result in a ClassCastException.
</li><li>Issue 566: MVStore: unique indexes that were created later on did not work correctly </li><li>Issue 566: MVStore: unique indexes that were created later on did not work correctly
if there were over 5000 rows in the table. if there were over 5000 rows in the table.
</li><li>MVStore: creating secondary indexes on large tables </li><li>MVStore: creating secondary indexes on large tables
results in missing rows in the index. results in missing rows in the index.
</li><li>Metadata: the password of linked tables is now only visible for admin users. </li><li>Metadata: the password of linked tables is now only visible for admin users.
</li><li>For Windows, database URLs of the form "jdbc:h2:/test" where considered </li><li>For Windows, database URLs of the form "jdbc:h2:/test" where considered
...@@ -58,7 +58,7 @@ Change Log ...@@ -58,7 +58,7 @@ Change Log
return type of procedure. return type of procedure.
</li><li>Issue 531: IDENTITY ignored for added column. </li><li>Issue 531: IDENTITY ignored for added column.
</li><li>FileSystem: improve exception throwing compatibility with JDK </li><li>FileSystem: improve exception throwing compatibility with JDK
</li><li>Spatial Index: adjust costs so we do not use the spatial index if the </li><li>Spatial Index: adjust costs so we do not use the spatial index if the
query does not contain an intersects operator. query does not contain an intersects operator.
</li><li>Fix multi-threaded deadlock when using a View that includes a TableFunction. </li><li>Fix multi-threaded deadlock when using a View that includes a TableFunction.
</li><li>Fix bug in dividing very-small BigDecimal numbers. </li><li>Fix bug in dividing very-small BigDecimal numbers.
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -203,7 +203,7 @@ public class AlterTableAddConstraint extends SchemaCommand { ...@@ -203,7 +203,7 @@ public class AlterTableAddConstraint extends SchemaCommand {
if (db.isStarting()) { if (db.isStarting()) {
// before version 1.3.176, an existing index was used: // before version 1.3.176, an existing index was used:
// must do the same to avoid // must do the same to avoid
// Unique index or primary key violation: // Unique index or primary key violation:
// "PRIMARY KEY ON """".PAGE_INDEX" // "PRIMARY KEY ON """".PAGE_INDEX"
index = getIndex(table, indexColumns, true); index = getIndex(table, indexColumns, true);
} else { } else {
...@@ -358,8 +358,8 @@ public class AlterTableAddConstraint extends SchemaCommand { ...@@ -358,8 +358,8 @@ public class AlterTableAddConstraint extends SchemaCommand {
for (IndexColumn col : cols) { for (IndexColumn col : cols) {
// all columns of the list must be part of the index, // all columns of the list must be part of the index,
// but not all columns of the index need to be part of the list // but not all columns of the index need to be part of the list
// holes are not allowed (index=a,b,c & list=a,b is ok; but list=a,c // holes are not allowed (index=a,b,c & list=a,b is ok;
// is not) // but list=a,c is not)
int idx = existingIndex.getColumnIndex(col.column); int idx = existingIndex.getColumnIndex(col.column);
if (idx < 0 || idx >= cols.length) { if (idx < 0 || idx >= cols.length) {
return false; return false;
......
...@@ -201,11 +201,11 @@ public class CreateTable extends SchemaCommand { ...@@ -201,11 +201,11 @@ public class CreateTable extends SchemaCommand {
if (t.getId() > table.getId()) { if (t.getId() > table.getId()) {
throw DbException.get( throw DbException.get(
ErrorCode.FEATURE_NOT_SUPPORTED_1, ErrorCode.FEATURE_NOT_SUPPORTED_1,
"Table depends on another table " + "Table depends on another table " +
"with a higher ID: " + t + "with a higher ID: " + t +
", this is currently not supported, " + ", this is currently not supported, " +
"as it would prevent the database from " + "as it would prevent the database from " +
"beeing re-opened"); "being re-opened");
} }
} }
} }
......
...@@ -34,7 +34,7 @@ public class Engine implements SessionFactory { ...@@ -34,7 +34,7 @@ public class Engine implements SessionFactory {
private boolean jmx; private boolean jmx;
private Engine() {} private Engine() {}
public static Engine getInstance() { public static Engine getInstance() {
return INSTANCE; return INSTANCE;
} }
......
...@@ -69,7 +69,7 @@ public class Cursor<K, V> implements Iterator<K> { ...@@ -69,7 +69,7 @@ public class Cursor<K, V> implements Iterator<K> {
public V getValue() { public V getValue() {
return lastValue; return lastValue;
} }
Page getPage() { Page getPage() {
return lastPage; return lastPage;
} }
...@@ -153,5 +153,5 @@ public class Cursor<K, V> implements Iterator<K> { ...@@ -153,5 +153,5 @@ public class Cursor<K, V> implements Iterator<K> {
} }
current = null; current = null;
} }
} }
...@@ -14,7 +14,7 @@ import org.h2.util.MathUtils; ...@@ -14,7 +14,7 @@ import org.h2.util.MathUtils;
* A free space bit set. * A free space bit set.
*/ */
public class FreeSpaceBitSet { public class FreeSpaceBitSet {
private static final boolean DETAILED_INFO = false; private static final boolean DETAILED_INFO = false;
/** /**
...@@ -178,7 +178,7 @@ public class FreeSpaceBitSet { ...@@ -178,7 +178,7 @@ public class FreeSpaceBitSet {
int onCount = 0, offCount = 0; int onCount = 0, offCount = 0;
int on = 0; int on = 0;
for (int i = 0; i < set.length(); i++) { for (int i = 0; i < set.length(); i++) {
if (set.get(i)) { if (set.get(i)) {
onCount++; onCount++;
on++; on++;
} else { } else {
...@@ -210,5 +210,5 @@ public class FreeSpaceBitSet { ...@@ -210,5 +210,5 @@ public class FreeSpaceBitSet {
buff.append(']'); buff.append(']');
return buff.toString(); return buff.toString();
} }
} }
\ No newline at end of file
...@@ -772,10 +772,10 @@ public class MVMap<K, V> extends AbstractMap<K, V> ...@@ -772,10 +772,10 @@ public class MVMap<K, V> extends AbstractMap<K, V>
public Iterator<K> keyIterator(K from) { public Iterator<K> keyIterator(K from) {
return new Cursor<K, V>(this, root, from); return new Cursor<K, V>(this, root, from);
} }
/** /**
* Re-write any pages that belong to one of the chunks in the given set. * Re-write any pages that belong to one of the chunks in the given set.
* *
* @param set the set of chunk ids * @param set the set of chunk ids
*/ */
public void rewrite(Set<Integer> set) { public void rewrite(Set<Integer> set) {
......
...@@ -1308,7 +1308,7 @@ public class MVStore { ...@@ -1308,7 +1308,7 @@ public class MVStore {
ByteBuffer buff = fileStore.readFully(p, Chunk.MAX_HEADER_LENGTH); ByteBuffer buff = fileStore.readFully(p, Chunk.MAX_HEADER_LENGTH);
return Chunk.readChunkHeader(buff, p); return Chunk.readChunkHeader(buff, p);
} }
/** /**
* Compact the store by moving all live pages to new chunks. * Compact the store by moving all live pages to new chunks.
* *
...@@ -1340,11 +1340,16 @@ public class MVStore { ...@@ -1340,11 +1340,16 @@ public class MVStore {
commitAndSave(); commitAndSave();
return true; return true;
} }
/**
* Compact by moving all chunks next to each other.
*
* @return if anything was written
*/
public synchronized boolean compactMoveChunks() { public synchronized boolean compactMoveChunks() {
return compactMoveChunks(Long.MAX_VALUE); return compactMoveChunks(Long.MAX_VALUE);
} }
/** /**
* Compact the store by moving all chunks next to each other, if there is * Compact the store by moving all chunks next to each other, if there is
* free space between chunks. This might temporarily double the file size. * free space between chunks. This might temporarily double the file size.
...@@ -1378,7 +1383,7 @@ public class MVStore { ...@@ -1378,7 +1383,7 @@ public class MVStore {
} }
return true; return true;
} }
private ArrayList<Chunk> compactGetMoveBlocks(long startBlock, long moveSize) { private ArrayList<Chunk> compactGetMoveBlocks(long startBlock, long moveSize) {
ArrayList<Chunk> move = New.arrayList(); ArrayList<Chunk> move = New.arrayList();
for (Chunk c : chunks.values()) { for (Chunk c : chunks.values()) {
...@@ -1403,16 +1408,16 @@ public class MVStore { ...@@ -1403,16 +1408,16 @@ public class MVStore {
} }
size += chunkSize; size += chunkSize;
count++; count++;
} }
// move the first block (so the first gap is moved), // move the first block (so the first gap is moved),
// and the one at the end (so the file shrinks) // and the one at the end (so the file shrinks)
while (move.size() > count && move.size() > 1) { while (move.size() > count && move.size() > 1) {
move.remove(1); move.remove(1);
} }
return move; return move;
} }
private void compactFreeUnusedChunks() { private void compactFreeUnusedChunks() {
long time = getTime(); long time = getTime();
ArrayList<Chunk> free = New.arrayList(); ArrayList<Chunk> free = New.arrayList();
...@@ -1510,7 +1515,7 @@ public class MVStore { ...@@ -1510,7 +1515,7 @@ public class MVStore {
public void sync() { public void sync() {
fileStore.sync(); fileStore.sync();
} }
/** /**
* Try to increase the fill rate by re-writing partially full chunks. Chunks * Try to increase the fill rate by re-writing partially full chunks. Chunks
* with a low number of live items are re-written. * with a low number of live items are re-written.
...@@ -2459,7 +2464,7 @@ public class MVStore { ...@@ -2459,7 +2464,7 @@ public class MVStore {
/** /**
* Get the maximum memory (in bytes) used for unsaved pages. If this number * Get the maximum memory (in bytes) used for unsaved pages. If this number
* is exceeded, unsaved changes are stored to disk. * is exceeded, unsaved changes are stored to disk.
* *
* @return the memory in bytes * @return the memory in bytes
*/ */
public int getAutoCommitMemory() { public int getAutoCommitMemory() {
...@@ -2467,8 +2472,8 @@ public class MVStore { ...@@ -2467,8 +2472,8 @@ public class MVStore {
} }
/** /**
* Get the estimated memory (in bytes) of unsaved data. If the value exceeds the * Get the estimated memory (in bytes) of unsaved data. If the value exceeds
* auto-commit memory, the changes are committed. * the auto-commit memory, the changes are committed.
* <p> * <p>
* The returned value is an estimation only. * The returned value is an estimation only.
* *
...@@ -2597,7 +2602,7 @@ public class MVStore { ...@@ -2597,7 +2602,7 @@ public class MVStore {
* <p> * <p>
* When the value is set to 0 or lower, data is not automatically * When the value is set to 0 or lower, data is not automatically
* stored. * stored.
* *
* @param kb the write buffer size, in kilobytes * @param kb the write buffer size, in kilobytes
* @return this * @return this
*/ */
......
...@@ -292,7 +292,7 @@ public class MVStoreTool { ...@@ -292,7 +292,7 @@ public class MVStoreTool {
String x = new Timestamp(t).toString(); String x = new Timestamp(t).toString();
return x.substring(0, 19); return x.substring(0, 19);
} }
/** /**
* A data type that can read any data that is persisted, and converts it to * A data type that can read any data that is persisted, and converts it to
* a byte array. * a byte array.
...@@ -340,7 +340,7 @@ public class MVStoreTool { ...@@ -340,7 +340,7 @@ public class MVStoreTool {
obj[i] = read(buff); obj[i] = read(buff);
} }
} }
} }
} }
...@@ -221,7 +221,13 @@ public class Page { ...@@ -221,7 +221,13 @@ public class Page {
Page p = childrenPages[index]; Page p = childrenPages[index];
return p != null ? p : map.readPage(children[index]); return p != null ? p : map.readPage(children[index]);
} }
/**
* Get the position of the child.
*
* @param index the index
* @return the position
*/
public long getChildPagePos(int index) { public long getChildPagePos(int index) {
return children[index]; return children[index];
} }
......
...@@ -226,6 +226,8 @@ public class MVTableEngine implements TableEngine { ...@@ -226,6 +226,8 @@ public class MVTableEngine implements TableEngine {
/** /**
* Remove all temporary maps. * Remove all temporary maps.
*
* @param objectIds the ids of the objects to keep
*/ */
public void removeTemporaryMaps(BitField objectIds) { public void removeTemporaryMaps(BitField objectIds) {
for (String mapName : store.getMapNames()) { for (String mapName : store.getMapNames()) {
......
...@@ -80,7 +80,7 @@ public class ValueDataType implements DataType { ...@@ -80,7 +80,7 @@ public class ValueDataType implements DataType {
this.handler = handler; this.handler = handler;
this.sortTypes = sortTypes; this.sortTypes = sortTypes;
} }
private SpatialDataType getSpatialDataType() { private SpatialDataType getSpatialDataType() {
if (spatialType == null) { if (spatialType == null) {
spatialType = new SpatialDataType(2); spatialType = new SpatialDataType(2);
......
...@@ -155,8 +155,8 @@ CREATE AGGREGATE [ IF NOT EXISTS ] newAggregateName FOR className ...@@ -155,8 +155,8 @@ CREATE AGGREGATE [ IF NOT EXISTS ] newAggregateName FOR className
"," ","
Creates a new user-defined aggregate function." Creates a new user-defined aggregate function."
"Commands (DDL)","CREATE ALIAS"," "Commands (DDL)","CREATE ALIAS","
CREATE ALIAS [ IF NOT EXISTS ] newFunctionAliasName [ DETERMINISTIC ] [ NOBUFFER ] CREATE ALIAS [ IF NOT EXISTS ] newFunctionAliasName [ DETERMINISTIC ]
{ FOR classAndMethodName | AS sourceCodeString } [ NOBUFFER ] { FOR classAndMethodName | AS sourceCodeString }
"," ","
Creates a new function alias." Creates a new function alias."
"Commands (DDL)","CREATE CONSTANT"," "Commands (DDL)","CREATE CONSTANT","
...@@ -171,13 +171,14 @@ CREATE DOMAIN [ IF NOT EXISTS ] newDomainName AS dataType ...@@ -171,13 +171,14 @@ CREATE DOMAIN [ IF NOT EXISTS ] newDomainName AS dataType
Creates a new data type (domain)." Creates a new data type (domain)."
"Commands (DDL)","CREATE INDEX"," "Commands (DDL)","CREATE INDEX","
CREATE CREATE
{ [ UNIQUE ] [ HASH ] [ SPATIAL] INDEX [ [ IF NOT EXISTS ] newIndexName ] { [ UNIQUE ] [ HASH | SPATIAL] INDEX [ [ IF NOT EXISTS ] newIndexName ]
| PRIMARY KEY [ HASH ] } | PRIMARY KEY [ HASH ] }
ON tableName ( indexColumn [,...] ) ON tableName ( indexColumn [,...] )
"," ","
Creates a new index." Creates a new index."
"Commands (DDL)","CREATE LINKED TABLE"," "Commands (DDL)","CREATE LINKED TABLE","
CREATE [ FORCE ] [ [ GLOBAL | LOCAL ] TEMPORARY ] LINKED TABLE [ IF NOT EXISTS ] CREATE [ FORCE ] [ [ GLOBAL | LOCAL ] TEMPORARY ]
LINKED TABLE [ IF NOT EXISTS ]
name ( driverString, urlString, userString, passwordString, name ( driverString, urlString, userString, passwordString,
[ originalSchemaString, ] originalTableString ) [ EMIT UPDATES | READONLY ] [ originalSchemaString, ] originalTableString ) [ EMIT UPDATES | READONLY ]
"," ","
......
...@@ -76,7 +76,7 @@ public class LocalResult implements ResultInterface, ResultTarget { ...@@ -76,7 +76,7 @@ public class LocalResult implements ResultInterface, ResultTarget {
rowId = -1; rowId = -1;
this.expressions = expressions; this.expressions = expressions;
} }
public void setMaxMemoryRows(int maxValue) { public void setMaxMemoryRows(int maxValue) {
this.maxMemoryRows = maxValue; this.maxMemoryRows = maxValue;
} }
......
...@@ -28,7 +28,7 @@ import org.h2.value.ValueNull; ...@@ -28,7 +28,7 @@ import org.h2.value.ValueNull;
* This class implements the temp table buffer for the LocalResult class. * This class implements the temp table buffer for the LocalResult class.
*/ */
public class ResultTempTable implements ResultExternal { public class ResultTempTable implements ResultExternal {
private static final String COLUMN_NAME = "DATA"; private static final String COLUMN_NAME = "DATA";
private final boolean distinct; private final boolean distinct;
private final SortOrder sort; private final SortOrder sort;
...@@ -73,7 +73,7 @@ public class ResultTempTable implements ResultExternal { ...@@ -73,7 +73,7 @@ public class ResultTempTable implements ResultExternal {
} }
parent = null; parent = null;
} }
private ResultTempTable(ResultTempTable parent) { private ResultTempTable(ResultTempTable parent) {
this.parent = parent; this.parent = parent;
this.columnCount = parent.columnCount; this.columnCount = parent.columnCount;
...@@ -86,15 +86,15 @@ public class ResultTempTable implements ResultExternal { ...@@ -86,15 +86,15 @@ public class ResultTempTable implements ResultExternal {
this.containsLob = parent.containsLob; this.containsLob = parent.containsLob;
reset(); reset();
} }
private void createIndex() { private void createIndex() {
IndexColumn[] indexCols = null; IndexColumn[] indexCols = null;
if (sort != null) { if (sort != null) {
int[] colInd = sort.getQueryColumnIndexes(); int[] colIndex = sort.getQueryColumnIndexes();
indexCols = new IndexColumn[colInd.length]; indexCols = new IndexColumn[colIndex.length];
for (int i = 0; i < colInd.length; i++) { for (int i = 0; i < colIndex.length; i++) {
IndexColumn indexColumn = new IndexColumn(); IndexColumn indexColumn = new IndexColumn();
indexColumn.column = table.getColumn(colInd[i]); indexColumn.column = table.getColumn(colIndex[i]);
indexColumn.sortType = sort.getSortTypes()[i]; indexColumn.sortType = sort.getSortTypes()[i];
indexColumn.columnName = COLUMN_NAME + i; indexColumn.columnName = COLUMN_NAME + i;
indexCols[i] = indexColumn; indexCols[i] = indexColumn;
...@@ -222,7 +222,7 @@ public class ResultTempTable implements ResultExternal { ...@@ -222,7 +222,7 @@ public class ResultTempTable implements ResultExternal {
Session sysSession = database.getSystemSession(); Session sysSession = database.getSystemSession();
table.removeChildrenAndResources(sysSession); table.removeChildrenAndResources(sysSession);
if (index != null) { if (index != null) {
// need to explicitly do this, // need to explicitly do this,
// as it's not registered in the system session // as it's not registered in the system session
session.removeLocalTempTableIndex(index); session.removeLocalTempTableIndex(index);
} }
......
...@@ -40,7 +40,7 @@ public class LobStorageMap implements LobStorageInterface { ...@@ -40,7 +40,7 @@ public class LobStorageMap implements LobStorageInterface {
private final Database database; private final Database database;
private boolean init; private boolean init;
private Object nextLobIdSync = new Object(); private Object nextLobIdSync = new Object();
private long nextLobId; private long nextLobId;
......
...@@ -1548,7 +1548,7 @@ public class PageStore implements CacheWriter { ...@@ -1548,7 +1548,7 @@ public class PageStore implements CacheWriter {
PageDataIndex scan = (PageDataIndex) index; PageDataIndex scan = (PageDataIndex) index;
Row row = scan.getRowWithKey(key); Row row = scan.getRowWithKey(key);
if (row == null || row.getKey() != key) { if (row == null || row.getKey() != key) {
trace.error(null, "Entry not found: " + key + trace.error(null, "Entry not found: " + key +
" found instead: " + row + " - ignoring"); " found instead: " + row + " - ignoring");
return; return;
} }
......
...@@ -320,5 +320,5 @@ public abstract class FilePath { ...@@ -320,5 +320,5 @@ public abstract class FilePath {
public FilePath unwrap() { public FilePath unwrap() {
return this; return this;
} }
} }
...@@ -204,7 +204,7 @@ class FileNioMapped extends FileBase { ...@@ -204,7 +204,7 @@ class FileNioMapped extends FileBase {
@Override @Override
public synchronized FileChannel truncate(long newLength) throws IOException { public synchronized FileChannel truncate(long newLength) throws IOException {
// compatibility with JDK FileChannel#truncate // compatibility with JDK FileChannel#truncate
if (mode == MapMode.READ_ONLY) { if (mode == MapMode.READ_ONLY) {
throw new NonWritableChannelException(); throw new NonWritableChannelException();
} }
......
...@@ -44,7 +44,7 @@ import org.h2.value.Value; ...@@ -44,7 +44,7 @@ import org.h2.value.Value;
public class TableView extends Table { public class TableView extends Table {
private static final long ROW_COUNT_APPROXIMATION = 100; private static final long ROW_COUNT_APPROXIMATION = 100;
private String querySQL; private String querySQL;
private ArrayList<Table> tables; private ArrayList<Table> tables;
private String[] columnNames; private String[] columnNames;
...@@ -230,7 +230,7 @@ public class TableView extends Table { ...@@ -230,7 +230,7 @@ public class TableView extends Table {
PlanItem item = new PlanItem(); PlanItem item = new PlanItem();
item.cost = index.getCost(session, masks, filter, sortOrder); item.cost = index.getCost(session, masks, filter, sortOrder);
final CacheKey cacheKey = new CacheKey(masks, session); final CacheKey cacheKey = new CacheKey(masks, session);
synchronized (this) { synchronized (this) {
SynchronizedVerifier.check(indexCache); SynchronizedVerifier.check(indexCache);
ViewIndex i2 = indexCache.get(cacheKey); ViewIndex i2 = indexCache.get(cacheKey);
...@@ -239,8 +239,9 @@ public class TableView extends Table { ...@@ -239,8 +239,9 @@ public class TableView extends Table {
return item; return item;
} }
} }
// We cannot hold the lock during the ViewIndex creation or we risk ABBA deadlocks // We cannot hold the lock during the ViewIndex creation or we risk ABBA
// if the view creation calls back into H2 via something like a FunctionTable. // deadlocks if the view creation calls back into H2 via something like
// a FunctionTable.
ViewIndex i2 = new ViewIndex(this, index, session, masks); ViewIndex i2 = new ViewIndex(this, index, session, masks);
synchronized (this) { synchronized (this) {
// have to check again in case another session has beat us to it // have to check again in case another session has beat us to it
...@@ -559,15 +560,15 @@ public class TableView extends Table { ...@@ -559,15 +560,15 @@ public class TableView extends Table {
} }
} }
} }
/** /**
* The key of the index cache for views. * The key of the index cache for views.
*/ */
private static final class CacheKey { private static final class CacheKey {
private final int[] masks; private final int[] masks;
private final Session session; private final Session session;
public CacheKey(int[] masks, Session session) { public CacheKey(int[] masks, Session session) {
this.masks = masks; this.masks = masks;
this.session = session; this.session = session;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* Initial Developer: H2 Group * Initial Developer: H2 Group
*/ */
/* /*
* Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0, * Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html). * and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group * Initial Developer: H2 Group
*/ */
......
...@@ -17,9 +17,9 @@ import java.util.WeakHashMap; ...@@ -17,9 +17,9 @@ import java.util.WeakHashMap;
* Utility to detect AB-BA deadlocks. * Utility to detect AB-BA deadlocks.
*/ */
public class AbbaDetector { public class AbbaDetector {
private static final boolean TRACE = false; private static final boolean TRACE = false;
private static final ThreadLocal<Deque<Object>> STACK = private static final ThreadLocal<Deque<Object>> STACK =
new ThreadLocal<Deque<Object>>() { new ThreadLocal<Deque<Object>>() {
@Override protected Deque<Object> initialValue() { @Override protected Deque<Object> initialValue() {
...@@ -28,13 +28,22 @@ public class AbbaDetector { ...@@ -28,13 +28,22 @@ public class AbbaDetector {
}; };
/** /**
* Map of (object A) -> ( map of (object locked before object A) -> (stacktrace where locked) ) * Map of (object A) -> (
* map of (object locked before object A) ->
* (stack trace where locked) )
*/ */
private static final Map<Object, Map<Object, Exception>> LOCK_ORDERING = private static final Map<Object, Map<Object, Exception>> LOCK_ORDERING =
new WeakHashMap<Object, Map<Object, Exception>>(); new WeakHashMap<Object, Map<Object, Exception>>();
private static final Set<String> KNOWN_DEADLOCKS = new HashSet<String>(); private static final Set<String> KNOWN_DEADLOCKS = new HashSet<String>();
/**
* This method is called just before or just after an object is
* synchronized.
*
* @param o the object, or null for the current class
* @return the object that was passed
*/
public static Object begin(Object o) { public static Object begin(Object o) {
if (o == null) { if (o == null) {
o = new SecurityManager() { o = new SecurityManager() {
...@@ -57,10 +66,10 @@ public class AbbaDetector { ...@@ -57,10 +66,10 @@ public class AbbaDetector {
stack.pop(); stack.pop();
} }
} }
if (TRACE) { if (TRACE) {
String thread = "[thread " + Thread.currentThread().getId() + "]"; String thread = "[thread " + Thread.currentThread().getId() + "]";
String ident = new String(new char[stack.size() * 2]).replace((char) 0, ' '); String indent = new String(new char[stack.size() * 2]).replace((char) 0, ' ');
System.out.println(thread + " " + ident + System.out.println(thread + " " + indent +
"sync " + getObjectName(o)); "sync " + getObjectName(o));
} }
if (stack.size() > 0) { if (stack.size() > 0) {
...@@ -69,17 +78,17 @@ public class AbbaDetector { ...@@ -69,17 +78,17 @@ public class AbbaDetector {
stack.push(o); stack.push(o);
return o; return o;
} }
private static Object getTest(Object o) { private static Object getTest(Object o) {
// return o.getClass(); // return o.getClass();
return o; return o;
} }
private static String getObjectName(Object o) { private static String getObjectName(Object o) {
return o.getClass().getSimpleName() + "@" + System.identityHashCode(o); return o.getClass().getSimpleName() + "@" + System.identityHashCode(o);
} }
public static synchronized void markHigher(Object o, Deque<Object> older) { private static synchronized void markHigher(Object o, Deque<Object> older) {
Object test = getTest(o); Object test = getTest(o);
Map<Object, Exception> map = LOCK_ORDERING.get(test); Map<Object, Exception> map = LOCK_ORDERING.get(test);
if (map == null) { if (map == null) {
...@@ -117,20 +126,5 @@ public class AbbaDetector { ...@@ -117,20 +126,5 @@ public class AbbaDetector {
} }
} }
} }
public static void main(String... args) {
Integer a = 1;
Float b = 2.0f;
synchronized (a) {
synchronized (b) {
System.out.println("a, then b");
}
}
synchronized (b) {
synchronized (a) {
System.out.println("b, then a");
}
}
}
} }
...@@ -23,22 +23,24 @@ import java.util.WeakHashMap; ...@@ -23,22 +23,24 @@ import java.util.WeakHashMap;
*/ */
public class AbbaLockingDetector implements Runnable { public class AbbaLockingDetector implements Runnable {
private int tickInterval_ms = 2; private int tickIntervalMs = 2;
private volatile boolean stop; private volatile boolean stop;
private final ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean(); private final ThreadMXBean threadMXBean =
ManagementFactory.getThreadMXBean();
private Thread thread; private Thread thread;
/** /**
* Map of (object A) -> ( map of (object locked before object A) -> * Map of (object A) -> ( map of (object locked before object A) ->
* (stacktrace where locked) ) * (stack trace where locked) )
*/ */
private final Map<String, Map<String, String>> LOCK_ORDERING = new WeakHashMap<String, Map<String, String>>(); private final Map<String, Map<String, String>> lockOrdering =
private final Set<String> KNOWN_DEADLOCKS = new HashSet<String>(); new WeakHashMap<String, Map<String, String>>();
private final Set<String> knownDeadlocks = new HashSet<String>();
/** /**
* Start collecting locking data. * Start collecting locking data.
* *
* @return this * @return this
*/ */
public AbbaLockingDetector startCollecting() { public AbbaLockingDetector startCollecting() {
...@@ -48,14 +50,17 @@ public class AbbaLockingDetector implements Runnable { ...@@ -48,14 +50,17 @@ public class AbbaLockingDetector implements Runnable {
return this; return this;
} }
/**
* Reset the state.
*/
public synchronized void reset() { public synchronized void reset() {
LOCK_ORDERING.clear(); lockOrdering.clear();
KNOWN_DEADLOCKS.clear(); knownDeadlocks.clear();
} }
/** /**
* Stop collecting. * Stop collecting.
* *
* @return this * @return this
*/ */
public AbbaLockingDetector stopCollecting() { public AbbaLockingDetector stopCollecting() {
...@@ -83,15 +88,19 @@ public class AbbaLockingDetector implements Runnable { ...@@ -83,15 +88,19 @@ public class AbbaLockingDetector implements Runnable {
} }
private void tick() { private void tick() {
if (tickInterval_ms > 0) { if (tickIntervalMs > 0) {
try { try {
Thread.sleep(tickInterval_ms); Thread.sleep(tickIntervalMs);
} catch (InterruptedException ex) { } catch (InterruptedException ex) {
// ignore // ignore
} }
} }
ThreadInfo[] list = threadMXBean.dumpAllThreads(true/* lockedMonitors */, false/* lockedSynchronizers */); ThreadInfo[] list = threadMXBean.dumpAllThreads(
// lockedMonitors
true,
// lockedSynchronizers
false);
processThreadList(list); processThreadList(list);
} }
...@@ -110,13 +119,14 @@ public class AbbaLockingDetector implements Runnable { ...@@ -110,13 +119,14 @@ public class AbbaLockingDetector implements Runnable {
* We cannot simply call getLockedMonitors because it is not guaranteed to * We cannot simply call getLockedMonitors because it is not guaranteed to
* return the locks in the correct order. * return the locks in the correct order.
*/ */
private static void generateOrdering(final List<String> lockOrder, ThreadInfo info) { private static void generateOrdering(final List<String> lockOrder,
ThreadInfo info) {
final MonitorInfo[] lockedMonitors = info.getLockedMonitors(); final MonitorInfo[] lockedMonitors = info.getLockedMonitors();
Arrays.sort(lockedMonitors, new Comparator<MonitorInfo>() { Arrays.sort(lockedMonitors, new Comparator<MonitorInfo>() {
@Override @Override
public int compare(MonitorInfo a, MonitorInfo b) { public int compare(MonitorInfo a, MonitorInfo b) {
return b.getLockedStackDepth() - a.getLockedStackDepth(); return b.getLockedStackDepth() - a.getLockedStackDepth();
} }
}); });
for (MonitorInfo mi : lockedMonitors) { for (MonitorInfo mi : lockedMonitors) {
String lockName = getObjectName(mi); String lockName = getObjectName(mi);
...@@ -132,28 +142,30 @@ public class AbbaLockingDetector implements Runnable { ...@@ -132,28 +142,30 @@ public class AbbaLockingDetector implements Runnable {
} }
} }
private synchronized void markHigher(List<String> lockOrder, ThreadInfo threadInfo) { private synchronized void markHigher(List<String> lockOrder,
ThreadInfo threadInfo) {
String topLock = lockOrder.get(lockOrder.size() - 1); String topLock = lockOrder.get(lockOrder.size() - 1);
Map<String, String> map = LOCK_ORDERING.get(topLock); Map<String, String> map = lockOrdering.get(topLock);
if (map == null) { if (map == null) {
map = new WeakHashMap<String, String>(); map = new WeakHashMap<String, String>();
LOCK_ORDERING.put(topLock, map); lockOrdering.put(topLock, map);
} }
String oldException = null; String oldException = null;
for (int i = 0; i < lockOrder.size() - 1; i++) { for (int i = 0; i < lockOrder.size() - 1; i++) {
String olderLock = lockOrder.get(i); String olderLock = lockOrder.get(i);
Map<String, String> oldMap = LOCK_ORDERING.get(olderLock); Map<String, String> oldMap = lockOrdering.get(olderLock);
boolean foundDeadLock = false; boolean foundDeadLock = false;
if (oldMap != null) { if (oldMap != null) {
String e = oldMap.get(topLock); String e = oldMap.get(topLock);
if (e != null) { if (e != null) {
foundDeadLock = true; foundDeadLock = true;
String deadlockType = topLock + " " + olderLock; String deadlockType = topLock + " " + olderLock;
if (!KNOWN_DEADLOCKS.contains(deadlockType)) { if (!knownDeadlocks.contains(deadlockType)) {
System.out.println(topLock + " synchronized after \n " + olderLock System.out.println(topLock + " synchronized after \n " + olderLock
+ ", but in the past before\n" + "AFTER\n" + getStackTraceForThread(threadInfo) + ", but in the past before\n" + "AFTER\n" +
getStackTraceForThread(threadInfo)
+ "BEFORE\n" + e); + "BEFORE\n" + e);
KNOWN_DEADLOCKS.add(deadlockType); knownDeadlocks.add(deadlockType);
} }
} }
} }
...@@ -172,13 +184,15 @@ public class AbbaLockingDetector implements Runnable { ...@@ -172,13 +184,15 @@ public class AbbaLockingDetector implements Runnable {
* stack frames) * stack frames)
*/ */
private static String getStackTraceForThread(ThreadInfo info) { private static String getStackTraceForThread(ThreadInfo info) {
StringBuilder sb = new StringBuilder("\"" + info.getThreadName() + "\"" + " Id=" + info.getThreadId() + " " StringBuilder sb = new StringBuilder("\"" +
+ info.getThreadState()); info.getThreadName() + "\"" + " Id=" +
info.getThreadId() + " " + info.getThreadState());
if (info.getLockName() != null) { if (info.getLockName() != null) {
sb.append(" on " + info.getLockName()); sb.append(" on " + info.getLockName());
} }
if (info.getLockOwnerName() != null) { if (info.getLockOwnerName() != null) {
sb.append(" owned by \"" + info.getLockOwnerName() + "\" Id=" + info.getLockOwnerId()); sb.append(" owned by \"" + info.getLockOwnerName() +
"\" Id=" + info.getLockOwnerId());
} }
if (info.isSuspended()) { if (info.isSuspended()) {
sb.append(" (suspended)"); sb.append(" (suspended)");
...@@ -191,9 +205,9 @@ public class AbbaLockingDetector implements Runnable { ...@@ -191,9 +205,9 @@ public class AbbaLockingDetector implements Runnable {
final MonitorInfo[] lockedMonitors = info.getLockedMonitors(); final MonitorInfo[] lockedMonitors = info.getLockedMonitors();
boolean startDumping = false; boolean startDumping = false;
for (int i = 0; i < stackTrace.length; i++) { for (int i = 0; i < stackTrace.length; i++) {
StackTraceElement ste = stackTrace[i]; StackTraceElement e = stackTrace[i];
if (startDumping) { if (startDumping) {
dumpStackTraceElement(info, sb, i, ste); dumpStackTraceElement(info, sb, i, e);
} }
for (MonitorInfo mi : lockedMonitors) { for (MonitorInfo mi : lockedMonitors) {
...@@ -202,7 +216,7 @@ public class AbbaLockingDetector implements Runnable { ...@@ -202,7 +216,7 @@ public class AbbaLockingDetector implements Runnable {
// something. // something.
// Removes a lot of unnecessary noise from the output. // Removes a lot of unnecessary noise from the output.
if (!startDumping) { if (!startDumping) {
dumpStackTraceElement(info, sb, i, ste); dumpStackTraceElement(info, sb, i, e);
startDumping = true; startDumping = true;
} }
sb.append("\t- locked " + mi); sb.append("\t- locked " + mi);
...@@ -213,8 +227,9 @@ public class AbbaLockingDetector implements Runnable { ...@@ -213,8 +227,9 @@ public class AbbaLockingDetector implements Runnable {
return sb.toString(); return sb.toString();
} }
private static void dumpStackTraceElement(ThreadInfo info, StringBuilder sb, int i, StackTraceElement ste) { private static void dumpStackTraceElement(ThreadInfo info,
sb.append("\tat " + ste.toString()); StringBuilder sb, int i, StackTraceElement e) {
sb.append('\t').append("at ").append(e.toString());
sb.append('\n'); sb.append('\n');
if (i == 0 && info.getLockInfo() != null) { if (i == 0 && info.getLockInfo() != null) {
Thread.State ts = info.getThreadState(); Thread.State ts = info.getThreadState();
...@@ -237,7 +252,8 @@ public class AbbaLockingDetector implements Runnable { ...@@ -237,7 +252,8 @@ public class AbbaLockingDetector implements Runnable {
} }
private static String getObjectName(MonitorInfo info) { private static String getObjectName(MonitorInfo info) {
return info.getClassName() + "@" + Integer.toHexString(info.getIdentityHashCode()); return info.getClassName() + "@" +
Integer.toHexString(info.getIdentityHashCode());
} }
} }
...@@ -52,11 +52,12 @@ public class DateTimeUtils { ...@@ -52,11 +52,12 @@ public class DateTimeUtils {
private static final int[] DAYS_OFFSET = { 0, 31, 61, 92, 122, 153, 184, private static final int[] DAYS_OFFSET = { 0, 31, 61, 92, 122, 153, 184,
214, 245, 275, 306, 337, 366 }; 214, 245, 275, 306, 337, 366 };
private static final ThreadLocal<Calendar> cachedCalendar = new ThreadLocal<Calendar>() { private static final ThreadLocal<Calendar> CACHED_CALENDAR =
@Override new ThreadLocal<Calendar>() {
protected Calendar initialValue() { @Override
protected Calendar initialValue() {
return Calendar.getInstance(); return Calendar.getInstance();
} }
}; };
private DateTimeUtils() { private DateTimeUtils() {
...@@ -67,7 +68,7 @@ public class DateTimeUtils { ...@@ -67,7 +68,7 @@ public class DateTimeUtils {
* Reset the calendar, for example after changing the default timezone. * Reset the calendar, for example after changing the default timezone.
*/ */
public static void resetCalendar() { public static void resetCalendar() {
cachedCalendar.remove(); CACHED_CALENDAR.remove();
} }
/** /**
...@@ -379,7 +380,7 @@ public class DateTimeUtils { ...@@ -379,7 +380,7 @@ public class DateTimeUtils {
int millis) { int millis) {
Calendar c; Calendar c;
if (tz == TimeZone.getDefault()) { if (tz == TimeZone.getDefault()) {
c = cachedCalendar.get(); c = CACHED_CALENDAR.get();
} else { } else {
c = Calendar.getInstance(tz); c = Calendar.getInstance(tz);
} }
...@@ -416,7 +417,7 @@ public class DateTimeUtils { ...@@ -416,7 +417,7 @@ public class DateTimeUtils {
* @return the value * @return the value
*/ */
public static int getDatePart(java.util.Date d, int field) { public static int getDatePart(java.util.Date d, int field) {
Calendar c = cachedCalendar.get(); Calendar c = CACHED_CALENDAR.get();
c.setTime(d); c.setTime(d);
if (field == Calendar.YEAR) { if (field == Calendar.YEAR) {
return getYear(c); return getYear(c);
...@@ -450,7 +451,7 @@ public class DateTimeUtils { ...@@ -450,7 +451,7 @@ public class DateTimeUtils {
* @return the milliseconds * @return the milliseconds
*/ */
public static long getTimeLocalWithoutDst(java.util.Date d) { public static long getTimeLocalWithoutDst(java.util.Date d) {
return d.getTime() + cachedCalendar.get().get(Calendar.ZONE_OFFSET); return d.getTime() + CACHED_CALENDAR.get().get(Calendar.ZONE_OFFSET);
} }
/** /**
...@@ -461,7 +462,7 @@ public class DateTimeUtils { ...@@ -461,7 +462,7 @@ public class DateTimeUtils {
* @return the number of milliseconds in UTC * @return the number of milliseconds in UTC
*/ */
public static long getTimeUTCWithoutDst(long millis) { public static long getTimeUTCWithoutDst(long millis) {
return millis - cachedCalendar.get().get(Calendar.ZONE_OFFSET); return millis - CACHED_CALENDAR.get().get(Calendar.ZONE_OFFSET);
} }
/** /**
...@@ -731,7 +732,7 @@ public class DateTimeUtils { ...@@ -731,7 +732,7 @@ public class DateTimeUtils {
* @return the date value * @return the date value
*/ */
public static long dateValueFromDate(long ms) { public static long dateValueFromDate(long ms) {
Calendar cal = cachedCalendar.get(); Calendar cal = CACHED_CALENDAR.get();
cal.clear(); cal.clear();
cal.setTimeInMillis(ms); cal.setTimeInMillis(ms);
return dateValueFromCalendar(cal); return dateValueFromCalendar(cal);
...@@ -759,7 +760,7 @@ public class DateTimeUtils { ...@@ -759,7 +760,7 @@ public class DateTimeUtils {
* @return the nanoseconds * @return the nanoseconds
*/ */
public static long nanosFromDate(long ms) { public static long nanosFromDate(long ms) {
Calendar cal = cachedCalendar.get(); Calendar cal = CACHED_CALENDAR.get();
cal.clear(); cal.clear();
cal.setTimeInMillis(ms); cal.setTimeInMillis(ms);
return nanosFromCalendar(cal); return nanosFromCalendar(cal);
......
...@@ -35,12 +35,12 @@ import org.h2.util.Utils.ClassFactory; ...@@ -35,12 +35,12 @@ import org.h2.util.Utils.ClassFactory;
* This is a utility class with JDBC helper functions. * This is a utility class with JDBC helper functions.
*/ */
public class JdbcUtils { public class JdbcUtils {
/** /**
* The serializer to use. * The serializer to use.
*/ */
public static JavaObjectSerializer serializer; public static JavaObjectSerializer serializer;
private static final String[] DRIVERS = { private static final String[] DRIVERS = {
"h2:", "org.h2.Driver", "h2:", "org.h2.Driver",
"Cache:", "com.intersys.jdbc.CacheDriver", "Cache:", "com.intersys.jdbc.CacheDriver",
...@@ -68,7 +68,7 @@ public class JdbcUtils { ...@@ -68,7 +68,7 @@ public class JdbcUtils {
"sqlserver:", "com.microsoft.sqlserver.jdbc.SQLServerDriver", "sqlserver:", "com.microsoft.sqlserver.jdbc.SQLServerDriver",
"teradata:", "com.ncr.teradata.TeraDriver", "teradata:", "com.ncr.teradata.TeraDriver",
}; };
private static boolean allowAllClasses; private static boolean allowAllClasses;
private static HashSet<String> allowedClassNames; private static HashSet<String> allowedClassNames;
...@@ -79,7 +79,7 @@ public class JdbcUtils { ...@@ -79,7 +79,7 @@ public class JdbcUtils {
new ArrayList<ClassFactory>(); new ArrayList<ClassFactory>();
private static String[] allowedClassNamePrefixes; private static String[] allowedClassNamePrefixes;
private JdbcUtils() { private JdbcUtils() {
// utility class // utility class
} }
...@@ -121,7 +121,7 @@ public class JdbcUtils { ...@@ -121,7 +121,7 @@ public class JdbcUtils {
} }
} }
} }
/** /**
* Load a class, but check if it is allowed to load this class first. To * Load a class, but check if it is allowed to load this class first. To
* perform access rights checking, the system property h2.allowedClasses * perform access rights checking, the system property h2.allowedClasses
...@@ -334,7 +334,7 @@ public class JdbcUtils { ...@@ -334,7 +334,7 @@ public class JdbcUtils {
loadUserClass(driver); loadUserClass(driver);
} }
} }
/** /**
* Serialize the object to a byte array, using the serializer specified by * Serialize the object to a byte array, using the serializer specified by
* the connection info if set, or the default serializer. * the connection info if set, or the default serializer.
......
...@@ -13,7 +13,7 @@ import java.util.concurrent.atomic.AtomicInteger; ...@@ -13,7 +13,7 @@ import java.util.concurrent.atomic.AtomicInteger;
* exception, it is wrapped in a RuntimeException. * exception, it is wrapped in a RuntimeException.
*/ */
public abstract class Task implements Runnable { public abstract class Task implements Runnable {
private static AtomicInteger counter = new AtomicInteger(); private static AtomicInteger counter = new AtomicInteger();
/** /**
......
...@@ -47,7 +47,7 @@ public class Utils { ...@@ -47,7 +47,7 @@ public class Utils {
private Utils() { private Utils() {
// utility class // utility class
} }
private static int readInt(byte[] buff, int pos) { private static int readInt(byte[] buff, int pos) {
return (buff[pos++] << 24) + return (buff[pos++] << 24) +
((buff[pos++] & 0xff) << 16) + ((buff[pos++] & 0xff) << 16) +
......
...@@ -568,7 +568,7 @@ public class Transfer { ...@@ -568,7 +568,7 @@ public class Transfer {
DateTimeUtils.getTimeUTCWithoutDst(readLong()), DateTimeUtils.getTimeUTCWithoutDst(readLong()),
readInt() % 1000000); readInt() % 1000000);
} }
return ValueTimestamp.fromMillisNanos(readLong(), return ValueTimestamp.fromMillisNanos(readLong(),
readInt() % 1000000); readInt() % 1000000);
} }
case Value.DECIMAL: case Value.DECIMAL:
......
...@@ -68,7 +68,7 @@ public class ValueDate extends Value { ...@@ -68,7 +68,7 @@ public class ValueDate extends Value {
public static ValueDate fromMillis(long ms) { public static ValueDate fromMillis(long ms) {
return fromDateValue(DateTimeUtils.dateValueFromDate(ms)); return fromDateValue(DateTimeUtils.dateValueFromDate(ms));
} }
/** /**
* Parse a string to a ValueDate. * Parse a string to a ValueDate.
* *
......
...@@ -68,7 +68,7 @@ public class ValueTime extends Value { ...@@ -68,7 +68,7 @@ public class ValueTime extends Value {
public static ValueTime fromMillis(long ms) { public static ValueTime fromMillis(long ms) {
return fromNanos(DateTimeUtils.nanosFromDate(ms)); return fromNanos(DateTimeUtils.nanosFromDate(ms));
} }
/** /**
* Parse a string to a ValueTime. * Parse a string to a ValueTime.
* *
......
...@@ -40,7 +40,8 @@ public class ValueTimestamp extends Value { ...@@ -40,7 +40,8 @@ public class ValueTimestamp extends Value {
static final int DEFAULT_SCALE = 10; static final int DEFAULT_SCALE = 10;
/** /**
* A bit field with bits for the year, month, and day (see DateTimeUtils for encoding) * A bit field with bits for the year, month, and day (see DateTimeUtils for
* encoding)
*/ */
private final long dateValue; private final long dateValue;
/** /**
...@@ -56,7 +57,8 @@ public class ValueTimestamp extends Value { ...@@ -56,7 +57,8 @@ public class ValueTimestamp extends Value {
/** /**
* Get or create a date value for the given date. * Get or create a date value for the given date.
* *
* @param dateValue the date value, a bit field with bits for the year, month, and day * @param dateValue the date value, a bit field with bits for the year,
* month, and day
* @param timeNanos the nanoseconds since midnight * @param timeNanos the nanoseconds since midnight
* @return the value * @return the value
*/ */
...@@ -81,6 +83,8 @@ public class ValueTimestamp extends Value { ...@@ -81,6 +83,8 @@ public class ValueTimestamp extends Value {
/** /**
* Get or create a timestamp value for the given date/time in millis. * Get or create a timestamp value for the given date/time in millis.
* *
* @param ms the milliseconds
* @param nanos the nanoseconds
* @return the value * @return the value
*/ */
public static ValueTimestamp fromMillisNanos(long ms, int nanos) { public static ValueTimestamp fromMillisNanos(long ms, int nanos) {
...@@ -88,10 +92,11 @@ public class ValueTimestamp extends Value { ...@@ -88,10 +92,11 @@ public class ValueTimestamp extends Value {
long timeNanos = nanos + DateTimeUtils.nanosFromDate(ms); long timeNanos = nanos + DateTimeUtils.nanosFromDate(ms);
return fromDateValueAndNanos(dateValue, timeNanos); return fromDateValueAndNanos(dateValue, timeNanos);
} }
/** /**
* Get or create a timestamp value for the given date/time in millis. * Get or create a timestamp value for the given date/time in millis.
* *
* @param ms the milliseconds
* @return the value * @return the value
*/ */
public static ValueTimestamp fromMillis(long ms) { public static ValueTimestamp fromMillis(long ms) {
...@@ -99,7 +104,7 @@ public class ValueTimestamp extends Value { ...@@ -99,7 +104,7 @@ public class ValueTimestamp extends Value {
long nanos = DateTimeUtils.nanosFromDate(ms); long nanos = DateTimeUtils.nanosFromDate(ms);
return fromDateValueAndNanos(dateValue, nanos); return fromDateValueAndNanos(dateValue, nanos);
} }
/** /**
* Parse a string to a ValueTimestamp. This method supports the format * Parse a string to a ValueTimestamp. This method supports the format
* +/-year-month-day hour:minute:seconds.fractional and an optional timezone * +/-year-month-day hour:minute:seconds.fractional and an optional timezone
...@@ -193,7 +198,10 @@ public class ValueTimestamp extends Value { ...@@ -193,7 +198,10 @@ public class ValueTimestamp extends Value {
} }
/** /**
* A bit field with bits for the year, month, and day (see DateTimeUtils for encoding) * A bit field with bits for the year, month, and day (see DateTimeUtils for
* encoding).
*
* @return the data value
*/ */
public long getDateValue() { public long getDateValue() {
return dateValue; return dateValue;
...@@ -201,6 +209,8 @@ public class ValueTimestamp extends Value { ...@@ -201,6 +209,8 @@ public class ValueTimestamp extends Value {
/** /**
* The nanoseconds since midnight. * The nanoseconds since midnight.
*
* @return the nanoseconds
*/ */
public long getTimeNanos() { public long getTimeNanos() {
return timeNanos; return timeNanos;
......
...@@ -362,8 +362,11 @@ java org.h2.test.TestAll timer ...@@ -362,8 +362,11 @@ java org.h2.test.TestAll timer
*/ */
String cacheType; String cacheType;
/**
* The AB-BA locking detector.
*/
AbbaLockingDetector abbaLockingDetector; AbbaLockingDetector abbaLockingDetector;
private Server server; private Server server;
/** /**
...@@ -382,12 +385,12 @@ java org.h2.test.TestAll timer ...@@ -382,12 +385,12 @@ java org.h2.test.TestAll timer
SelfDestructor.startCountdown(4 * 60); SelfDestructor.startCountdown(4 * 60);
long time = System.currentTimeMillis(); long time = System.currentTimeMillis();
printSystemInfo(); printSystemInfo();
// use lower values, to better test those cases, // use lower values, to better test those cases,
// and (for delays) to speed up the tests // and (for delays) to speed up the tests
System.setProperty("h2.maxMemoryRows", "100"); System.setProperty("h2.maxMemoryRows", "100");
System.setProperty("h2.check2", "true"); System.setProperty("h2.check2", "true");
System.setProperty("h2.delayWrongPasswordMin", "0"); System.setProperty("h2.delayWrongPasswordMin", "0");
System.setProperty("h2.delayWrongPasswordMax", "0"); System.setProperty("h2.delayWrongPasswordMax", "0");
...@@ -517,7 +520,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1` ...@@ -517,7 +520,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
if (Boolean.getBoolean("abba")) { if (Boolean.getBoolean("abba")) {
abbaLockingDetector = new AbbaLockingDetector().startCollecting(); abbaLockingDetector = new AbbaLockingDetector().startCollecting();
} }
coverage = isCoverage(); coverage = isCoverage();
smallLog = big = networked = memory = ssl = false; smallLog = big = networked = memory = ssl = false;
......
...@@ -168,7 +168,7 @@ public class TestAlter extends TestBase { ...@@ -168,7 +168,7 @@ public class TestAlter extends TestBase {
assertFalse(rs.next()); assertFalse(rs.next());
stat.execute("drop table t"); stat.execute("drop table t");
} }
private void testAlterTableAddColumnIfNotExists() throws SQLException { private void testAlterTableAddColumnIfNotExists() throws SQLException {
stat.execute("create table t(x varchar) as select 'x'"); stat.execute("create table t(x varchar) as select 'x'");
stat.execute("alter table t add if not exists x int"); stat.execute("alter table t add if not exists x int");
......
...@@ -107,7 +107,7 @@ public class TestCases extends TestBase { ...@@ -107,7 +107,7 @@ public class TestCases extends TestBase {
testBinaryCollation(); testBinaryCollation();
deleteDb("cases"); deleteDb("cases");
} }
private void testReferenceLaterTable() throws SQLException { private void testReferenceLaterTable() throws SQLException {
deleteDb("cases"); deleteDb("cases");
Connection conn = getConnection("cases"); Connection conn = getConnection("cases");
......
...@@ -60,7 +60,7 @@ public class TestMultiThread extends TestBase implements Runnable { ...@@ -60,7 +60,7 @@ public class TestMultiThread extends TestBase implements Runnable {
testConcurrentAnalyze(); testConcurrentAnalyze();
testConcurrentInsertUpdateSelect(); testConcurrentInsertUpdateSelect();
} }
private void testConcurrentLobAdd() throws Exception { private void testConcurrentLobAdd() throws Exception {
String db = "concurrentLobAdd"; String db = "concurrentLobAdd";
deleteDb(db); deleteDb(db);
......
...@@ -48,20 +48,20 @@ public class TestRights extends TestBase { ...@@ -48,20 +48,20 @@ public class TestRights extends TestBase {
testSchemaAdminRole(); testSchemaAdminRole();
deleteDb("rights"); deleteDb("rights");
} }
private void testLinkedTableMeta() throws SQLException { private void testLinkedTableMeta() throws SQLException {
deleteDb("rights"); deleteDb("rights");
Connection conn = getConnection("rights"); Connection conn = getConnection("rights");
stat = conn.createStatement(); stat = conn.createStatement();
stat.execute("create user test password 'test'"); stat.execute("create user test password 'test'");
stat.execute("create linked table test" + stat.execute("create linked table test" +
"(null, 'jdbc:h2:mem:', 'sa', 'sa', 'DUAL')"); "(null, 'jdbc:h2:mem:', 'sa', 'sa', 'DUAL')");
// password is invisible to non-admin // password is invisible to non-admin
Connection conn2 = getConnection( Connection conn2 = getConnection(
"rights", "test", getPassword("test")); "rights", "test", getPassword("test"));
Statement stat2 = conn2.createStatement(); Statement stat2 = conn2.createStatement();
ResultSet rs = stat2.executeQuery( ResultSet rs = stat2.executeQuery(
"select * from information_schema.tables " + "select * from information_schema.tables " +
"where table_name = 'TEST'"); "where table_name = 'TEST'");
assertTrue(rs.next()); assertTrue(rs.next());
ResultSetMetaData meta = rs.getMetaData(); ResultSetMetaData meta = rs.getMetaData();
...@@ -72,7 +72,7 @@ public class TestRights extends TestBase { ...@@ -72,7 +72,7 @@ public class TestRights extends TestBase {
conn2.close(); conn2.close();
// password is visible to admin // password is visible to admin
rs = stat.executeQuery( rs = stat.executeQuery(
"select * from information_schema.tables " + "select * from information_schema.tables " +
"where table_name = 'TEST'"); "where table_name = 'TEST'");
assertTrue(rs.next()); assertTrue(rs.next());
meta = rs.getMetaData(); meta = rs.getMetaData();
...@@ -85,7 +85,7 @@ public class TestRights extends TestBase { ...@@ -85,7 +85,7 @@ public class TestRights extends TestBase {
} }
assertTrue(foundPassword); assertTrue(foundPassword);
conn2.close(); conn2.close();
stat.execute("drop table test"); stat.execute("drop table test");
conn.close(); conn.close();
} }
......
...@@ -840,7 +840,8 @@ public class TestSpatial extends TestBase { ...@@ -840,7 +840,8 @@ public class TestSpatial extends TestBase {
try { try {
Statement stat = conn.createStatement(); Statement stat = conn.createStatement();
stat.execute("drop table if exists test"); stat.execute("drop table if exists test");
stat.execute("create table test(id serial primary key, value double, the_geom geometry)"); stat.execute("create table test(id serial primary key, " +
"value double, the_geom geometry)");
stat.execute("create spatial index spatial on test(the_geom)"); stat.execute("create spatial index spatial on test(the_geom)");
ResultSet rs = stat.executeQuery("explain select * from test where _ROWID_ = 5"); ResultSet rs = stat.executeQuery("explain select * from test where _ROWID_ = 5");
assertTrue(rs.next()); assertTrue(rs.next());
......
...@@ -79,15 +79,15 @@ public class TestMVTableEngine extends TestBase { ...@@ -79,15 +79,15 @@ public class TestMVTableEngine extends TestBase {
testLocking(); testLocking();
testSimple(); testSimple();
} }
private void testOldAndNew() throws SQLException { private void testOldAndNew() throws SQLException {
FileUtils.deleteRecursive(getBaseDir(), true); FileUtils.deleteRecursive(getBaseDir(), true);
Connection conn; Connection conn;
String urlOld = getURL("mvstore;MV_STORE=FALSE", true); String urlOld = getURL("mvstore;MV_STORE=FALSE", true);
String urlNew = getURL("mvstore;MV_STORE=TRUE", true); String urlNew = getURL("mvstore;MV_STORE=TRUE", true);
String url = getURL("mvstore", true); String url = getURL("mvstore", true);
conn = getConnection(urlOld); conn = getConnection(urlOld);
conn.createStatement().execute("create table test_old(id int)"); conn.createStatement().execute("create table test_old(id int)");
conn.close(); conn.close();
...@@ -107,7 +107,7 @@ public class TestMVTableEngine extends TestBase { ...@@ -107,7 +107,7 @@ public class TestMVTableEngine extends TestBase {
conn.createStatement().execute("select * from test_new"); conn.createStatement().execute("select * from test_new");
conn.close(); conn.close();
} }
private void testTemporaryTables() throws SQLException { private void testTemporaryTables() throws SQLException {
FileUtils.deleteRecursive(getBaseDir(), true); FileUtils.deleteRecursive(getBaseDir(), true);
Connection conn; Connection conn;
...@@ -135,7 +135,7 @@ public class TestMVTableEngine extends TestBase { ...@@ -135,7 +135,7 @@ public class TestMVTableEngine extends TestBase {
} }
conn.close(); conn.close();
} }
private void testUniqueIndex() throws SQLException { private void testUniqueIndex() throws SQLException {
FileUtils.deleteRecursive(getBaseDir(), true); FileUtils.deleteRecursive(getBaseDir(), true);
Connection conn; Connection conn;
...@@ -151,7 +151,7 @@ public class TestMVTableEngine extends TestBase { ...@@ -151,7 +151,7 @@ public class TestMVTableEngine extends TestBase {
assertFalse(rs.next()); assertFalse(rs.next());
conn.close(); conn.close();
} }
private void testSecondaryIndex() throws SQLException { private void testSecondaryIndex() throws SQLException {
FileUtils.deleteRecursive(getBaseDir(), true); FileUtils.deleteRecursive(getBaseDir(), true);
Connection conn; Connection conn;
...@@ -162,12 +162,12 @@ public class TestMVTableEngine extends TestBase { ...@@ -162,12 +162,12 @@ public class TestMVTableEngine extends TestBase {
stat = conn.createStatement(); stat = conn.createStatement();
stat.execute("create table test(id int)"); stat.execute("create table test(id int)");
int size = 8 * 1024; int size = 8 * 1024;
stat.execute("insert into test select mod(x * 111, " + size + ") " + stat.execute("insert into test select mod(x * 111, " + size + ") " +
"from system_range(1, " + size + ")"); "from system_range(1, " + size + ")");
stat.execute("create index on test(id)"); stat.execute("create index on test(id)");
ResultSet rs = stat.executeQuery( ResultSet rs = stat.executeQuery(
"select count(*) from test inner join " + "select count(*) from test inner join " +
"system_range(1, " + size + ") where " + "system_range(1, " + size + ") where " +
"id = mod(x * 111, " + size + ")"); "id = mod(x * 111, " + size + ")");
rs.next(); rs.next();
assertEquals(size, rs.getInt(1)); assertEquals(size, rs.getInt(1));
......
...@@ -49,7 +49,7 @@ public class AbbaDetect { ...@@ -49,7 +49,7 @@ public class AbbaDetect {
in.close(); in.close();
String source = new String(data, "UTF-8"); String source = new String(data, "UTF-8");
String original = source; String original = source;
source = disable(source); source = disable(source);
if (enable) { if (enable) {
String s2 = enable(source); String s2 = enable(source);
...@@ -66,13 +66,13 @@ public class AbbaDetect { ...@@ -66,13 +66,13 @@ public class AbbaDetect {
RandomAccessFile out = new RandomAccessFile(newFile, "rw"); RandomAccessFile out = new RandomAccessFile(newFile, "rw");
out.write(source.getBytes("UTF-8")); out.write(source.getBytes("UTF-8"));
out.close(); out.close();
File oldFile = new File(file + ".old"); File oldFile = new File(file + ".old");
file.renameTo(oldFile); file.renameTo(oldFile);
newFile.renameTo(file); newFile.renameTo(file);
oldFile.delete(); oldFile.delete();
} }
private static String disable(String source) { private static String disable(String source) {
source = source.replaceAll("\\{org.h2.util.AbbaDetector.begin\\(.*\\);", "{"); source = source.replaceAll("\\{org.h2.util.AbbaDetector.begin\\(.*\\);", "{");
source = source.replaceAll("org.h2.util.AbbaDetector.begin\\((.*\\(\\))\\)", "$1"); source = source.replaceAll("org.h2.util.AbbaDetector.begin\\((.*\\(\\))\\)", "$1");
...@@ -80,17 +80,21 @@ public class AbbaDetect { ...@@ -80,17 +80,21 @@ public class AbbaDetect {
source = source.replaceAll("synchronized ", "synchronized "); source = source.replaceAll("synchronized ", "synchronized ");
return source; return source;
} }
private static String enable(String source) { private static String enable(String source) {
// the word synchronized within single line comments comments // the word synchronized within single line comments comments
source = source.replaceAll("(// .* synchronized )([^ ])", "$1 $2"); source = source.replaceAll("(// .* synchronized )([^ ])", "$1 $2");
source = source.replaceAll("synchronized \\((.*)\\(\\)\\)", "synchronized \\(org.h2.util.AbbaDetector.begin\\($1\\(\\)\\)\\)");
source = source.replaceAll("synchronized \\((.*)\\)", "synchronized \\(org.h2.util.AbbaDetector.begin\\($1\\)\\)");
source = source.replaceAll("static synchronized ([^ (].*)\\{", "static synchronized $1{org.h2.util.AbbaDetector.begin\\(null\\);"); source = source.replaceAll("synchronized \\((.*)\\(\\)\\)",
source = source.replaceAll("synchronized ([^ (].*)\\{", "synchronized $1{org.h2.util.AbbaDetector.begin\\(this\\);"); "synchronized \\(org.h2.util.AbbaDetector.begin\\($1\\(\\)\\)\\)");
source = source.replaceAll("synchronized \\((.*)\\)",
"synchronized \\(org.h2.util.AbbaDetector.begin\\($1\\)\\)");
source = source.replaceAll("static synchronized ([^ (].*)\\{",
"static synchronized $1{org.h2.util.AbbaDetector.begin\\(null\\);");
source = source.replaceAll("synchronized ([^ (].*)\\{",
"synchronized $1{org.h2.util.AbbaDetector.begin\\(this\\);");
return source; return source;
} }
......
...@@ -755,4 +755,8 @@ predicted prediction wojtek hops jurczyk cbtree predict vast assumption upside ...@@ -755,4 +755,8 @@ predicted prediction wojtek hops jurczyk cbtree predict vast assumption upside
adjusted lastly sgtatham cleaning gillet prevented adjusted lastly sgtatham cleaning gillet prevented
angus bernd chatellier macdonald eckenfels granting moreover exponential transferring angus bernd chatellier macdonald eckenfels granting moreover exponential transferring
dedup megabyte breadth traversal affine tucc jentsch yyyymmdd vertica graf dedup megabyte breadth traversal affine tucc jentsch yyyymmdd vertica graf
mutate shard shards mutate shard shards succession recipients provisionally contributor statutory
inaccuracies detector logos launcher rewrite monitors equivalents trademarks
reinstated uninteresting dead defendant doctrines beat factual fair suspended
exploit noise ongoing disclaimers shrinks remedy party desirable timely construe
deque synchronizers affero
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论