1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

row0sel.c Removes now trailing spaces from varchars

srv0start.c	Removes now trailing spaces from varchars
row0mysql.ic	Removes now trailing spaces from varchars
ha_innobase.cc	Removes now trailing spaces from varchars
This commit is contained in:
heikki@donna.mysql.fi
2001-03-02 19:07:29 +02:00
parent 831e23edd6
commit 3abaff79ce
4 changed files with 27 additions and 5 deletions

View File

@@ -175,6 +175,9 @@ open_or_create_log_file(
fprintf(stderr,
"Innobase: Log file %s did not exist: new to be created\n",
name);
printf("Innobase: Setting log file %s size to %lu\n",
name, UNIV_PAGE_SIZE * srv_log_file_size);
ret = os_file_set_size(name, files[i],
UNIV_PAGE_SIZE * srv_log_file_size, 0);
if (!ret) {
@@ -323,6 +326,9 @@ open_or_create_data_files(
printf("Innobase: Setting file %s size to %lu\n",
name, UNIV_PAGE_SIZE * srv_data_file_sizes[i]);
printf(
"Innobase: Database physically writes the file full: wait...\n");
ret = os_file_set_size(name, files[i],
UNIV_PAGE_SIZE * srv_data_file_sizes[i], 0);