2013-06-19 02:13:32 +05:30
|
|
|
<?php
|
|
|
|
/**
|
2013-09-01 20:03:02 +05:30
|
|
|
*
|
2014-05-27 20:18:06 +02:00
|
|
|
* This file is part of the phpBB Forum Software package.
|
|
|
|
*
|
|
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
*
|
|
|
|
* For full copyright and license information, please see
|
|
|
|
* the docs/CREDITS.txt file.
|
2013-09-01 20:03:02 +05:30
|
|
|
*
|
|
|
|
*/
|
2013-06-19 02:13:32 +05:30
|
|
|
|
2013-09-01 22:15:33 +05:30
|
|
|
require_once dirname(__FILE__) . '/base.php';
|
2013-06-19 02:13:32 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* @group functional
|
|
|
|
*/
|
2013-09-01 20:03:02 +05:30
|
|
|
class phpbb_functional_search_postgres_test extends phpbb_functional_search_base
|
2013-06-19 02:13:32 +05:30
|
|
|
{
|
2013-10-05 21:21:15 +05:30
|
|
|
protected $search_backend = '\phpbb\search\fulltext_postgres';
|
2013-09-01 22:25:27 +05:30
|
|
|
|
2013-06-19 02:13:32 +05:30
|
|
|
}
|