Commit b4918451 authored by unknown's avatar unknown
Browse files

Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-4.1-build

into  kahlann.erinye.com:/home/df/mysql/build/mysql-4.1-build

parents f7bd015c a1566a09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -621,7 +621,7 @@ buf_pool_init(
		}
	}

	buf_pool->page_hash = hash0_create(2 * max_size);
	buf_pool->page_hash = hash_create(2 * max_size);

	buf_pool->n_pend_reads = 0;

+3 −3
Original line number Diff line number Diff line
@@ -703,13 +703,13 @@ dict_init(void)
	mutex_create(&(dict_sys->mutex));
	mutex_set_level(&(dict_sys->mutex), SYNC_DICT);

	dict_sys->table_hash = hash0_create(buf_pool_get_max_size() /
	dict_sys->table_hash = hash_create(buf_pool_get_max_size() /
					(DICT_POOL_PER_TABLE_HASH *
					UNIV_WORD_SIZE));
	dict_sys->table_id_hash = hash0_create(buf_pool_get_max_size() /
	dict_sys->table_id_hash = hash_create(buf_pool_get_max_size() /
					(DICT_POOL_PER_TABLE_HASH *
					UNIV_WORD_SIZE));
	dict_sys->col_hash = hash0_create(buf_pool_get_max_size() /
	dict_sys->col_hash = hash_create(buf_pool_get_max_size() /
					(DICT_POOL_PER_COL_HASH *
					UNIV_WORD_SIZE));
	dict_sys->size = 0;
+2 −2
Original line number Diff line number Diff line
@@ -1295,8 +1295,8 @@ fil_system_create(

	mutex_set_level(&(system->mutex), SYNC_ANY_LATCH);

	system->spaces = hash0_create(hash_size);
	system->name_hash = hash0_create(hash_size);
	system->spaces = hash_create(hash_size);
	system->name_hash = hash_create(hash_size);

	UT_LIST_INIT(system->LRU);

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ ha_create(
	hash_table_t*	table;
	ulint		i;

	table = hash0_create(n);
	table = hash_create(n);

	if (in_btr_search) {
		table->adaptive = TRUE;
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ Creates a hash table with >= n array cells. The actual number of cells is
chosen to be a prime number slightly bigger than n. */

hash_table_t*
hash0_create(
hash_create(
/*========*/
			/* out, own: created table */
	ulint	n)	/* in: number of array cells */
Loading