Exception with hash index.

19 views
Skip to first unread message

Silvio Moioli

unread,
Jul 27, 2007, 8:26:11 AM7/27/07
to H2 Database
Good afternoon,
an exception is raised when I try to use a hash index with a large
column (VARCHAR(1000)). Is there any fix for this?

Database version: H2 Version 1.0 / 2007-07-12

System information:
regina:~ silvio$ uname -a
Darwin regina.local 8.10.1 Darwin Kernel Version 8.10.1: Wed May 23
16:33:00 PDT 2007; root:xnu-792.22.5~1/RELEASE_I386 i386 i386
regina:~ silvio$ java -version
java version "1.5.0_07"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-164)
Java HotSpot(TM) Client VM (build 1.5.0_07-87, mixed mode, sharing)

(Mac OS X Tiger 10.4.10 with default J2SE 5 VM).

Database schema:
CREATE TABLE FILESYSTEMNODES
(FULLPATH VARCHAR(1000) PRIMARY KEY HASH,
X DOUBLE NOT NULL,
Y DOUBLE NOT NULL,
WIDTH DOUBLE NOT NULL,
HEIGHT DOUBLE NOT NULL,
M00 DOUBLE NOT NULL,
M10 DOUBLE NOT NULL,
M01 DOUBLE NOT NULL,
M11 DOUBLE NOT NULL,
M02 DOUBLE NOT NULL,
M12 DOUBLE NOT NULL;

Queries:
INSERT INTO FILESYSTEMNODES
(FULLPATH, X, Y, WIDTH, HEIGHT, M00, M10, M01, M11, M02, M12)
VALUES
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)

UPDATE FILESYSTEMNODES SET
X = ?, Y = ?, WIDTH = ?, HEIGHT = ?, M00 = ?, M10 = ?, M01 = ?,
M11 = ?,
M02 = ?, M12 = ?
WHERE FULLPATH = ?

Exception:
org.h2.jdbc.JdbcSQLException: General error:
java.lang.NullPointerException [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.NullPointerException
at org.h2.index.LinearHashIndex.add(LinearHashIndex.java:142)
at org.h2.index.LinearHashIndex.addAll(LinearHashIndex.java:242)
at org.h2.index.LinearHashIndex.split(LinearHashIndex.java:236)
at org.h2.index.LinearHashIndex.add(LinearHashIndex.java:140)
at org.h2.index.LinearHashIndex.add(LinearHashIndex.java:454)
at org.h2.table.TableData.addRow(TableData.java:78)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 443 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 443
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 444 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 444
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 445 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 445
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 446 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 446
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 447 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 447
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 448 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 448
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 449 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 449
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 450 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 450
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 451 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 451
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 452 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 452
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 453 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 453
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 454 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 454
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 455 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 455
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 456 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 456
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 457 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 457
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 458 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 458
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 459 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 459
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 460 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 460
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 440 got 410 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:178)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 440 got 410
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.removeRow(TableData.java:252)
at org.h2.table.Table.updateRows(Table.java:136)
at org.h2.command.dml.Update.update(Update.java:104)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 461 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 461
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 462 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 462
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 463 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 463
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 464 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 464
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 465 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 465
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 466 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 466
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 467 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 467
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 468 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 468
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 469 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 469
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 470 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 470
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 471 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 471
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 472 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 472
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 473 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 473
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 474 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 474
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 475 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 475
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 476 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 476
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 477 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 477
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 478 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 478
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 479 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 479
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 480 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 480
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 481 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 481
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 482 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 482
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 483 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 483
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 484 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 484
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 485 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 485
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 486 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 486
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 487 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 487
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 488 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 488
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 489 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 489
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 490 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 490
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 491 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 491
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 492 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 492
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 493 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 493
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 494 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 494
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 495 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 495
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more
org.h2.jdbc.JdbcSQLException: General error: java.lang.Error: rowCount
expected 442 got 496 [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
118)
at MetadataManager.saveMetadata(MetadataManager.java:165)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:129)
at FilesystemNodeSource.updateNode(FilesystemNodeSource.java:1)
at UpdateInSourceTask.run(UpdateInSourceTask.java:59)
Caused by: java.lang.Error: rowCount expected 442 got 496
at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.addRow(TableData.java:82)
at org.h2.command.dml.Insert.update(Insert.java:88)
at org.h2.command.CommandContainer.update(CommandContainer.java:64)
at org.h2.command.Command.executeUpdate(Command.java:121)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:
127)
at
org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:
116)
... 4 more

Thomas Mueller

unread,
Jul 27, 2007, 12:38:07 PM7/27/07
to h2-da...@googlegroups.com
Hi,

Sorry, I can't reproduce it yet... Do you have some test data or code?
So far I have tried with:

DROP TABLE FILESYSTEMNODES;
CREATE TABLE FILESYSTEMNODES (FULLPATH VARCHAR(1000) PRIMARY KEY HASH, X INT);
@LOOP 10000 INSERT INTO FILESYSTEMNODES VALUES (SPACE(200) || ?, ?);
@LOOP 10000 UPDATE FILESYSTEMNODES SET X = ? + 1 WHERE FULLPATH =
SPACE(200) || ?;

You can run this in the H2 Console (@LOOP is supported).

Thomas

AnselmD

unread,
Jul 31, 2007, 12:50:52 PM7/31/07
to H2 Database
Hi Thomas,

just for interest, i tried your example using H2 1.0 (2007-07-12) /
windows 2000/
java version "1.6.0_02"
Java(TM) SE Runtime Environment (build 1.6.0_02-b05)
Java HotSpot(TM) Client VM (build 1.6.0_02-b05, mixed mode, sharing)

and got the following error:
DROP TABLE FILESYSTEMNODES;
Table FILESYSTEMNODES not found [42S02-55]
org.h2.jdbc.JdbcSQLException: Table FILESYSTEMNODES not found
[42S02-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.getSQLException(Message.java:47)
at org.h2.command.ddl.DropTable.prepareDrop(DropTable.java:54)
at org.h2.command.ddl.DropTable.update(DropTable.java:83)


at org.h2.command.CommandContainer.update(CommandContainer.java:
64)
at org.h2.command.Command.executeUpdate(Command.java:121)

at org.h2.server.TcpServerThread.process(TcpServerThread.java:238)
at org.h2.server.TcpServerThread.run(TcpServerThread.java:90)
at java.lang.Thread.run(Thread.java:619)

at org.h2.engine.SessionRemote.done(SessionRemote.java:293)
at org.h2.command.CommandRemote.executeUpdate(CommandRemote.java:
166)
at org.h2.jdbc.JdbcStatement.execute(JdbcStatement.java:155)
at org.h2.server.web.WebThread.getResult(WebThread.java:1211)
at org.h2.server.web.WebThread.query(WebThread.java:881)
at org.h2.server.web.WebThread.process(WebThread.java:344)
at org.h2.server.web.WebThread.processRequest(WebThread.java:117)
at org.h2.server.web.WebThread.run(WebThread.java:144)


CREATE TABLE FILESYSTEMNODES (FULLPATH VARCHAR(1000) PRIMARY KEY HASH,
X INT);

Update count: 0
(30 ms)

@LOOP 10000 INSERT INTO FILESYSTEMNODES VALUES (SPACE(200) || ?, ?);

General error: java.lang.NullPointerException [HY000-55]


org.h2.jdbc.JdbcSQLException: General error:
java.lang.NullPointerException [HY000-55]
at org.h2.message.Message.getSQLException(Message.java:65)
at org.h2.message.Message.convert(Message.java:367)
at org.h2.message.TraceObject.logAndConvert(TraceObject.java:207)
at

org.h2.jdbc.JdbcPreparedStatement.execute(JdbcPreparedStatement.java:
167)
at org.h2.server.web.WebThread.executeLoop(WebThread.java:1310)
at org.h2.server.web.WebThread.getResult(WebThread.java:1192)
at org.h2.server.web.WebThread.query(WebThread.java:881)
at org.h2.server.web.WebThread.process(WebThread.java:344)
at org.h2.server.web.WebThread.processRequest(WebThread.java:117)
at org.h2.server.web.WebThread.run(WebThread.java:144)
Caused by: java.lang.NullPointerException
at java.lang.StringBuffer.<init>(StringBuffer.java:103)
at org.h2.jdbc.JdbcSQLException.buildMessage(JdbcSQLException.java:
43)
at org.h2.jdbc.JdbcSQLException.<init>(JdbcSQLException.java:32)
at org.h2.engine.SessionRemote.done(SessionRemote.java:293)
at org.h2.command.CommandRemote.executeUpdate(CommandRemote.java:
166)
at
org.h2.jdbc.JdbcPreparedStatement.execute(JdbcPreparedStatement.java:
159)
... 6 more


@LOOP 10000 UPDATE FILESYSTEMNODES SET X = ? + 1 WHERE FULLPATH =
SPACE(200) || ?;

rowCount expected 440 got 431 [HY000-55]
java.lang.Error: rowCount expected 440 got 431


at org.h2.message.Message.getInternalError(Message.java:98)
at org.h2.table.TableData.removeRow(TableData.java:252)
at org.h2.table.Table.updateRows(Table.java:136)
at org.h2.command.dml.Update.update(Update.java:104)
at org.h2.command.CommandContainer.update(CommandContainer.java:
64)
at org.h2.command.Command.executeUpdate(Command.java:121)

at org.h2.server.TcpServerThread.process(TcpServerThread.java:238)
at org.h2.server.TcpServerThread.run(TcpServerThread.java:90)
at java.lang.Thread.run(Thread.java:619)

at org.h2.engine.SessionRemote.done(SessionRemote.java:293)
at org.h2.command.CommandRemote.executeUpdate(CommandRemote.java:
166)
at
org.h2.jdbc.JdbcPreparedStatement.execute(JdbcPreparedStatement.java:
159)
at org.h2.server.web.WebThread.executeLoop(WebThread.java:1310)
at org.h2.server.web.WebThread.getResult(WebThread.java:1192)
at org.h2.server.web.WebThread.query(WebThread.java:881)
at org.h2.server.web.WebThread.process(WebThread.java:344)
at org.h2.server.web.WebThread.processRequest(WebThread.java:117)
at org.h2.server.web.WebThread.run(WebThread.java:144)

Best regards,
Anselm


On 27 Jul., 18:38, "Thomas Mueller" <thomas.tom.muel...@gmail.com>
wrote:


> Hi,
>
> Sorry, I can't reproduce it yet... Do you have some test data or code?
> So far I have tried with:
>
> DROP TABLE FILESYSTEMNODES;
> CREATE TABLE FILESYSTEMNODES (FULLPATH VARCHAR(1000) PRIMARY KEY HASH, X INT);
> @LOOP 10000 INSERT INTO FILESYSTEMNODES VALUES (SPACE(200) || ?, ?);
> @LOOP 10000 UPDATE FILESYSTEMNODES SET X = ? + 1 WHERE FULLPATH =
> SPACE(200) || ?;
>
> You can run this in the H2 Console (@LOOP is supported).
>
> Thomas
>

> ...
>
> Erfahren Sie mehr »

Thomas Mueller

unread,
Aug 3, 2007, 12:28:04 PM8/3/07
to h2-da...@googlegroups.com
Hi,

I can't reproduce this problem with the newest release. Is it still
reproducible?

DROP TABLE FILESYSTEMNODES;
CREATE TABLE FILESYSTEMNODES (FULLPATH VARCHAR(1000) PRIMARY KEY HASH, X INT);
@LOOP 10000 INSERT INTO FILESYSTEMNODES VALUES (SPACE(200) || ?, ?);
@LOOP 10000 UPDATE FILESYSTEMNODES SET X = ? + 1 WHERE FULLPATH =
SPACE(200) || ?;

Thomas

AnselmD

unread,
Aug 4, 2007, 4:37:27 AM8/4/07
to H2 Database
Hi Thomas,

with H2 1.0 (2007-08-02) the problem is not reproducible.

Anselm

On 3 Aug., 18:28, "Thomas Mueller" <thomas.tom.muel...@gmail.com>
wrote:
> Hi,
>


> I can't reproduce this problem with the newest release. Is it still
> reproducible?
>
> DROP TABLE FILESYSTEMNODES;
> CREATE TABLE FILESYSTEMNODES (FULLPATH VARCHAR(1000) PRIMARY KEY HASH, X INT);
> @LOOP 10000 INSERT INTO FILESYSTEMNODES VALUES (SPACE(200) || ?, ?);
> @LOOP 10000 UPDATE FILESYSTEMNODES SET X = ? + 1 WHERE FULLPATH =
> SPACE(200) || ?;
>
> Thomas
>

> ...
>
> Erfahren Sie mehr »

Reply all
Reply to author
Forward
0 new messages