File tree 5 files changed +14
-9
lines changed
5 files changed +14
-9
lines changed Original file line number Diff line number Diff line change
1
+ dist : bionic
1
2
language : php
2
3
3
4
php :
4
- - 7.1
5
- - 7.2
6
- - 7.3
7
5
- 7.4
8
6
- 8.0
9
7
- 8.1.0
Original file line number Diff line number Diff line change
1
+ #### 3.0.2
2
+ * Dropped support for PHP 7.3 and lower
3
+
1
4
#### 3.0.1
2
5
* Fixed Exception Error for PDO Driver
3
6
* Dropped support for PHP 7.0 and lower
Original file line number Diff line number Diff line change @@ -1368,6 +1368,10 @@ public function compileEscapeChars($array = array())
1368
1368
*/
1369
1369
public function escapeMatch ($ string )
1370
1370
{
1371
+ if (is_null ($ string )) {
1372
+ return '' ;
1373
+ }
1374
+
1371
1375
if ($ string instanceof Expression) {
1372
1376
return $ string ->value ();
1373
1377
}
Original file line number Diff line number Diff line change 2
2
3
3
case $SEARCH_BUILD in
4
4
SPHINX2)
5
- wget --quiet http://ppa.launchpad.net/builds/sphinxsearch-rel22/ubuntu/dists/ ` lsb_release -cs ` /main/binary-amd64/Packages .gz
6
- gzip -d Packages .gz
7
- SPHINX_DEB= ` grep -m1 Filename Packages | cut -f2 -d ' ' `
8
- wget --quiet -O search.deb http://ppa.launchpad.net/builds/sphinxsearch-rel22/ubuntu/ ${SPHINX_DEB}
9
- dpkg -x search.deb .
5
+ wget --quiet http://sphinxsearch.com/files/sphinx-2.2.11-release.tar .gz
6
+ tar zxvf sphinx-2.2.11-release.tar .gz
7
+ cd sphinx-2.2.11-release
8
+ ./configure --prefix=/usr/local/sphinx
9
+ sudo make && sudo make install
10
10
;;
11
11
SPHINX3)
12
12
wget --quiet http://sphinxsearch.com/files/sphinx-3.0.3-facc3fb-linux-amd64.tar.gz
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ case $SEARCH_BUILD in
4
4
SPHINX2)
5
5
WORK=$HOME /search
6
6
gcc -shared -o data/test_udf.so test_udf.c
7
- $WORK /usr/bin/searchd -c sphinx.conf
7
+ /usr/local/sphinx /bin/searchd -c sphinx.conf
8
8
;;
9
9
SPHINX3)
10
10
WORK=$HOME /search/sphinx-3.0.3
You can’t perform that action at this time.
0 commit comments