Skip to content

Commit

Permalink
use int instead of boolean for int column
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 7, 2007
1 parent 84f4b6a commit da45e10
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -111,7 +111,7 @@ public boolean updateNode(Node node) {
node.getNodeGroupId(), node.getExternalId(),
node.getDatabaseType(), node.getDatabaseVersion(),
node.getSchemaVersion(), node.getSymmetricVersion(),
node.getSyncURL(), node.getHeartbeatTime(), node.isSyncEnabled(), node.getNodeId() }) == 1;
node.getSyncURL(), node.getHeartbeatTime(), node.isSyncEnabled() ? 1 : 0, node.getNodeId() }) == 1;
return updated;
}

Expand Down

0 comments on commit da45e10

Please sign in to comment.