This is an automated email from the ASF dual-hosted git repository.
tallison pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/master by this push:
new 347e601 increase token counts to long from int
347e601 is described below
commit 347e601d4bffdac82a5a8953dd0e770163ebd05d
Author: tballison <[email protected]>
AuthorDate: Mon Apr 24 22:18:10 2017 -0400
increase token counts to long from int
---
tika-eval/src/main/resources/comparison-reports.xml | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/tika-eval/src/main/resources/comparison-reports.xml
b/tika-eval/src/main/resources/comparison-reports.xml
index 59d6d5f..512ac6a 100644
--- a/tika-eval/src/main/resources/comparison-reports.xml
+++ b/tika-eval/src/main/resources/comparison-reports.xml
@@ -69,7 +69,6 @@
percent_exceptions_b double default 0.0);
</sql>
<sql>
-
insert into exceptions_compared (mime_id_a, mime_id_b)
select ma.mime_id, mb.mime_id
from profiles_a a
@@ -135,12 +134,12 @@
create table token_counts_compared
(mime_id_a integer,
mime_id_b integer,
- num_tokens_a integer default 0,
- num_tokens_b integer default 0,
- num_alphabetic_tokens_a integer default 0,
- num_alphabetic_tokens_b integer default 0,
- num_common_tokens_a integer default 0,
- num_common_tokens_b integer default 0,
+ num_tokens_a long default 0,
+ num_tokens_b long default 0,
+ num_alphabetic_tokens_a long default 0,
+ num_alphabetic_tokens_b long default 0,
+ num_common_tokens_a long default 0,
+ num_common_tokens_b long default 0,
);
</sql>
<sql>
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].