Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ab8517f3
Commit
ab8517f3
authored
Feb 24, 2006
by
osku
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix invalid brace positioning and spaces before tabs.
parent
591e526f
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
28 deletions
+18
-28
dict/dict0dict.c
dict/dict0dict.c
+1
-2
handler/ha_innodb.cc
handler/ha_innodb.cc
+5
-9
include/os0proc.h
include/os0proc.h
+1
-1
include/sync0sync.ic
include/sync0sync.ic
+1
-3
include/univ.i
include/univ.i
+1
-1
os/os0proc.c
os/os0proc.c
+3
-3
row/row0ins.c
row/row0ins.c
+2
-2
row/row0sel.c
row/row0sel.c
+3
-6
row/row0umod.c
row/row0umod.c
+1
-1
No files found.
dict/dict0dict.c
View file @
ab8517f3
...
...
@@ -2993,8 +2993,7 @@ dict_create_foreign_constraints_low(
command, determine if there are any foreign keys, and
if so, immediately reject the command if the table is a
temporary one. For now, this kludge will work. */
if
(
reject_fks
&&
(
UT_LIST_GET_LEN
(
table
->
foreign_list
)
>
0
))
{
if
(
reject_fks
&&
(
UT_LIST_GET_LEN
(
table
->
foreign_list
)
>
0
))
{
return
DB_CANNOT_ADD_CONSTRAINT
;
}
...
...
handler/ha_innodb.cc
View file @
ab8517f3
...
...
@@ -626,8 +626,7 @@ innobase_mysql_print_thd(
/* Points to buf or dyn_str. */
char
*
str
=
buf
;
if
(
max_query_len
==
0
)
{
if
(
max_query_len
==
0
)
{
/* ADDITIONAL SAFETY: the default is to print at
most 300 chars to reduce the probability of a
seg fault if there is a race in
...
...
@@ -639,8 +638,7 @@ innobase_mysql_print_thd(
len
=
min
(
thd
->
query_length
,
max_query_len
);
if
(
len
>
(
sizeof
(
buf
)
-
1
))
{
if
(
len
>
(
sizeof
(
buf
)
-
1
))
{
dyn_str
=
my_malloc
(
len
+
1
,
MYF
(
0
));
str
=
dyn_str
;
}
...
...
@@ -651,8 +649,7 @@ innobase_mysql_print_thd(
putc
(
'\n'
,
f
);
fwrite
(
str
,
1
,
len
,
f
);
if
(
dyn_str
)
{
if
(
dyn_str
)
{
my_free
(
dyn_str
,
MYF
(
0
));
}
}
...
...
@@ -1683,7 +1680,7 @@ innobase_commit(
innobase_commit_low
(
trx
);
if
(
srv_commit_concurrency
>
0
)
{
if
(
srv_commit_concurrency
>
0
)
{
pthread_mutex_lock
(
&
commit_cond_m
);
commit_threads
--
;
pthread_cond_signal
(
&
commit_cond
);
...
...
@@ -6624,8 +6621,7 @@ innodb_show_status(
/* allocate buffer for the string, and
read the contents of the temporary file */
if
(
!
(
str
=
my_malloc
(
usable_len
+
1
,
MYF
(
0
))))
{
if
(
!
(
str
=
my_malloc
(
usable_len
+
1
,
MYF
(
0
))))
{
mutex_exit_noninline
(
&
srv_monitor_file_mutex
);
DBUG_RETURN
(
TRUE
);
}
...
...
include/os0proc.h
View file @
ab8517f3
...
...
@@ -118,7 +118,7 @@ void*
os_mem_alloc_large
(
/*===============*/
/* out: allocated memory */
ulint
n
,
/* in: number of bytes */
ulint
n
,
/* in: number of bytes */
ibool
set_to_zero
,
/* in: TRUE if allocated memory
should be set to zero if
UNIV_SET_MEM_TO_ZERO is defined */
...
...
include/sync0sync.ic
View file @
ab8517f3
...
...
@@ -255,8 +255,7 @@ mutex_enter_func(
mutex->count_using++;
#endif /* UNIV_HOTBACKUP */
if (!mutex_test_and_set(mutex))
{
if (!mutex_test_and_set(mutex)) {
#ifdef UNIV_SYNC_DEBUG
mutex_set_debug_info(mutex, file_name, line);
#endif
...
...
@@ -264,5 +263,4 @@ mutex_enter_func(
}
mutex_spin_wait(mutex, file_name, line);
}
include/univ.i
View file @
ab8517f3
...
...
@@ -232,7 +232,7 @@ of a field is a 32-bit integer when we store it, for example, to an undo log
on disk, we must have also this number fit in 32 bits, also in 64-bit
computers! */
#
define
UNIV_SQL_NULL
ULINT32_UNDEFINED
#
define
UNIV_SQL_NULL
ULINT32_UNDEFINED
/* Lengths which are not UNIV_SQL_NULL, but bigger than the following
number indicate that a field contains a reference to an externally
...
...
os/os0proc.c
View file @
ab8517f3
...
...
@@ -119,7 +119,7 @@ os_awe_enable_lock_pages_in_mem(void)
Result
=
LookupPrivilegeValue
(
NULL
,
SE_LOCK_MEMORY_NAME
,
&
(
Info
.
Privilege
[
0
].
Luid
));
if
(
Result
!=
TRUE
)
{
if
(
Result
!=
TRUE
)
{
fprintf
(
stderr
,
"InnoDB: AWE: Cannot get local privilege value for %s, error %lu.
\n
"
,
SE_LOCK_MEMORY_NAME
,
(
ulint
)
GetLastError
());
...
...
@@ -134,7 +134,7 @@ os_awe_enable_lock_pages_in_mem(void)
0
,
NULL
,
NULL
);
/* Check the result */
if
(
Result
!=
TRUE
)
{
if
(
Result
!=
TRUE
)
{
fprintf
(
stderr
,
"InnoDB: AWE: Cannot adjust process token privileges, error %u.
\n
"
,
GetLastError
());
...
...
@@ -533,7 +533,7 @@ void*
os_mem_alloc_large
(
/*===============*/
/* out: allocated memory */
ulint
n
,
/* in: number of bytes */
ulint
n
,
/* in: number of bytes */
ibool
set_to_zero
,
/* in: TRUE if allocated memory
should be set to zero if
UNIV_SET_MEM_TO_ZERO is defined */
...
...
row/row0ins.c
View file @
ab8517f3
...
...
@@ -276,7 +276,7 @@ row_ins_sec_index_entry_by_modify(
if
(
err
==
DB_OVERFLOW
||
err
==
DB_UNDERFLOW
)
{
err
=
DB_FAIL
;
}
}
else
{
}
else
{
ut_a
(
mode
==
BTR_MODIFY_TREE
);
err
=
btr_cur_pessimistic_update
(
BTR_KEEP_SYS_FLAG
,
cursor
,
&
dummy_big_rec
,
update
,
0
,
thr
,
mtr
);
...
...
@@ -340,7 +340,7 @@ row_ins_clust_index_entry_by_modify(
if
(
err
==
DB_OVERFLOW
||
err
==
DB_UNDERFLOW
)
{
err
=
DB_FAIL
;
}
}
else
{
}
else
{
ut_a
(
mode
==
BTR_MODIFY_TREE
);
err
=
btr_cur_pessimistic_update
(
0
,
cursor
,
big_rec
,
update
,
0
,
thr
,
mtr
);
...
...
row/row0sel.c
View file @
ab8517f3
...
...
@@ -2909,8 +2909,7 @@ row_sel_pop_cached_row_for_mysql(
ut_ad
(
prebuilt
->
n_fetch_cached
>
0
);
ut_ad
(
prebuilt
->
mysql_prefix_len
<=
prebuilt
->
mysql_row_len
);
if
(
UNIV_UNLIKELY
(
prebuilt
->
keep_other_fields_on_keyread
))
{
if
(
UNIV_UNLIKELY
(
prebuilt
->
keep_other_fields_on_keyread
))
{
/* Copy cache record field by field, don't touch fields that
are not covered by current key */
cached_rec
=
...
...
@@ -2924,8 +2923,7 @@ row_sel_pop_cached_row_for_mysql(
templ
->
mysql_col_len
);
/* Copy NULL bit of the current field from cached_rec
to buf */
if
(
templ
->
mysql_null_bit_mask
)
{
if
(
templ
->
mysql_null_bit_mask
)
{
buf
[
templ
->
mysql_null_byte_offset
]
^=
(
buf
[
templ
->
mysql_null_byte_offset
]
^
cached_rec
[
templ
->
mysql_null_byte_offset
])
&
...
...
@@ -2933,8 +2931,7 @@ row_sel_pop_cached_row_for_mysql(
}
}
}
else
{
else
{
ut_memcpy
(
buf
,
prebuilt
->
fetch_cache
[
prebuilt
->
fetch_cache_first
],
prebuilt
->
mysql_prefix_len
);
}
...
...
row/row0umod.c
View file @
ab8517f3
...
...
@@ -458,7 +458,7 @@ row_undo_mod_del_unmark_sec_and_undo_update(
if
(
err
==
DB_OVERFLOW
||
err
==
DB_UNDERFLOW
)
{
err
=
DB_FAIL
;
}
}
else
{
}
else
{
ut_a
(
mode
==
BTR_MODIFY_TREE
);
err
=
btr_cur_pessimistic_update
(
BTR_KEEP_SYS_FLAG
|
BTR_NO_LOCKING_FLAG
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment