Chỉ có một cách giải quyết đơn giản, xấu xí, không thanh lịch, nhưng nó hoạt động trong trường hợp này:
$original_reserved = $this->db->_reserved_identifiers;
$this->db->_reserved_identifiers[] = 5;
$this->db->_reserved_identifiers[] = 1;
// or any other values
$this->db->join('with critical values and conditions');
// some db-stuff
$this->db->_reserved_identifiers = $original_reserved;
Nếu ai biết rõ hơn, xin vui lòng chỉ cho nó!