8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 02:03:03 +01:00
This commit is contained in:
dimitr 2009-08-27 10:48:59 +00:00
parent c1387a3f22
commit 8c731a42d7
2 changed files with 4 additions and 3 deletions

View File

@ -403,7 +403,9 @@ void RSE_open(thread_db* tdbb, RecordSource* rsb)
{
case rsb_indexed:
impure->irsb_bitmap = EVL_bitmap(tdbb, (jrd_nod*) rsb->rsb_arg[0], NULL);
#ifdef SUPERSERVER_V2
impure->irsb_prefetch_number = -1;
#endif
case rsb_navigate:
case rsb_sequential:

View File

@ -197,22 +197,21 @@ struct irsb_recurse
struct irsb_first_n
{
ULONG irsb_flags;
//SLONG irsb_number;
SINT64 irsb_count;
};
struct irsb_skip_n
{
ULONG irsb_flags;
//SLONG irsb_number;
SINT64 irsb_count;
};
struct irsb_index
{
ULONG irsb_flags;
//SLONG irsb_number;
#ifdef SUPERSERVER_V2
SLONG irsb_prefetch_number;
#endif
RecordBitmap** irsb_bitmap;
};