[Rt-commit] rt branch, 4.2-trunk, updated. rt-4.2.5-120-gdce5260
Kevin Falcone
falcone at bestpractical.com
Wed Jul 2 16:32:55 EDT 2014
The branch, 4.2-trunk has been updated
via dce526063ed2bcf3ad1689ce153d855283b99639 (commit)
via 378c7e352916494000db735fae550f22eae2b5e7 (commit)
from 3806c0aa9bca7962541710e8e3ca7b2ff19b14db (commit)
Summary of changes:
sbin/rt-setup-fulltext-index.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 378c7e352916494000db735fae550f22eae2b5e7
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Tue Apr 22 14:11:24 2014 -0400
Support Sphinx builds compiled with --enable-id64
Sphinx 2.2.1 and above default to 64-bit document ids, and earlier
versions shipped a compile-time configuration flag to enable them.
Create the SphinxSE table with a "BIGINT" id column, which works for
both 64-bit and 32-bit document ids.
diff --git a/sbin/rt-setup-fulltext-index.in b/sbin/rt-setup-fulltext-index.in
index 5e63456..acbcc4a 100644
--- a/sbin/rt-setup-fulltext-index.in
+++ b/sbin/rt-setup-fulltext-index.in
@@ -157,7 +157,7 @@ if ( $DB{'type'} eq 'mysql' ) {
my $schema = <<END;
CREATE TABLE $table (
- id INTEGER UNSIGNED NOT NULL,
+ id BIGINT NOT NULL,
weight INTEGER NOT NULL,
query VARCHAR(3072) NOT NULL,
INDEX(query)
commit dce526063ed2bcf3ad1689ce153d855283b99639
Merge: 3806c0a 378c7e3
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Jul 2 15:47:20 2014 -0400
Merge branch '4.2/64bit-sphinx' into 4.2-trunk
-----------------------------------------------------------------------
More information about the rt-commit
mailing list