Commit 36d72ee3 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

revert r38125 (XXX limit indexing full text size up to approx. 8MB, otherwise...

revert r38125 (XXX limit indexing full text size up to approx. 8MB, otherwise SphinxQL operations fail for very large texts), because this should be solved by using a bigger value in max_packet_size in sphinx.conf.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38126 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent df94908a
......@@ -107,7 +107,7 @@ VALUES\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
(\n
<dtml-sqlvar expr="uid[loop_item]" type="int">, \n
<dtml-sqlvar expr="(SearchableText[loop_item] or \'\')[:8388550]" type="string">\n
<dtml-sqlvar expr="(SearchableText[loop_item] or \'\')" type="string">\n
)\n
<dtml-if sequence-end>\n
<dtml-else>\n
......@@ -163,7 +163,7 @@ VALUES\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
(\n
<dtml-sqlvar expr="uid[loop_item]" type="int">, \n
<dtml-sqlvar expr="(SearchableText[loop_item] or \'\')[:8388550]" type="string">\n
<dtml-sqlvar expr="(SearchableText[loop_item] or \'\')" type="string">\n
)\n
<dtml-if sequence-end>\n
<dtml-else>\n
......
2010-09-02 Kazuhiko
* XXX limit indexing full text size up to approx. 8MB, otherwise SphinxQL operations fail for very large texts.
2010-08-19 Kazuhiko
* initial commit
\ No newline at end of file
2
\ No newline at end of file
3
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment