Commit 19a33e08 authored by unknown's avatar unknown
Browse files

Many files:

  Renamed hash_create() not to clash with imap using embedded server (bug#13859)


innobase/buf/buf0buf.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/dict/dict0dict.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/fil/fil0fil.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/ha/ha0ha.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/ha/hash0hash.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/include/hash0hash.h:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/lock/lock0lock.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/log/log0recv.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
innobase/thr/thr0loc.c:
  Renamed hash_create() not to clash with imap using embedded server (bug#13859)
parent 190a79c7
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 = hash_create(2 * max_size);
	buf_pool->page_hash = hash0_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 = hash_create(buf_pool_get_max_size() /
	dict_sys->table_hash = hash0_create(buf_pool_get_max_size() /
					(DICT_POOL_PER_TABLE_HASH *
					UNIV_WORD_SIZE));
	dict_sys->table_id_hash = hash_create(buf_pool_get_max_size() /
	dict_sys->table_id_hash = hash0_create(buf_pool_get_max_size() /
					(DICT_POOL_PER_TABLE_HASH *
					UNIV_WORD_SIZE));
	dict_sys->col_hash = hash_create(buf_pool_get_max_size() /
	dict_sys->col_hash = hash0_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 = hash_create(hash_size);
	system->name_hash = hash_create(hash_size);
	system->spaces = hash0_create(hash_size);
	system->name_hash = hash0_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 = hash_create(n);
	table = hash0_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*
hash_create(
hash0_create(
/*========*/
			/* out, own: created table */
	ulint	n)	/* in: number of array cells */
Loading