Re-add missing support for index hints in XML query

This commit is contained in:
Kijin Sung 2020-12-15 22:36:55 +09:00
parent 2a5d99b2df
commit a908cd9291
3 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* GroupBy class.
*/
class IndexHint
{
public $target_db = array();
public $hint_type = '';
public $index_name = '';
public $table_name = '';
}