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
57541e72
Commit
57541e72
authored
Nov 12, 2002
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed 2 typo in BUG_TABLES using
remuved 'unstable' variable from test
parent
7187fa9e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
include/myisampack.h
include/myisampack.h
+2
-2
mysql-test/r/variables.result
mysql-test/r/variables.result
+1
-4
mysql-test/t/variables.test
mysql-test/t/variables.test
+2
-1
No files found.
include/myisampack.h
View file @
57541e72
...
...
@@ -212,9 +212,9 @@
/* Fix to avoid warnings when sizeof(ha_rows) == sizeof(long) */
#ifdef BIG_TABLE
#ifdef BIG_TABLE
S
#define mi_rowstore(T,A) mi_int8store(T,A)
#define mi_rowkorr(T
,A)
mi_uint8korr(T)
#define mi_rowkorr(T
)
mi_uint8korr(T)
#else
#define mi_rowstore(T,A) { mi_int4store(T,0); mi_int4store(((T)+4),A); }
#define mi_rowkorr(T) mi_uint4korr((T)+4)
...
...
mysql-test/r/variables.result
View file @
57541e72
...
...
@@ -48,9 +48,6 @@ set max_join_size=100;
show variables like 'max_join_size';
Variable_name Value
max_join_size 100
show global variables like 'max_join_size';
Variable_name Value
max_join_size 4294967295
set GLOBAL max_join_size=2000;
show global variables like 'max_join_size';
Variable_name Value
...
...
@@ -62,7 +59,7 @@ max_join_size 2000
set GLOBAL max_join_size=DEFAULT;
show global variables like 'max_join_size';
Variable_name Value
max_join_size
429496729
5
max_join_size
1844674407370955161
5
set @@max_join_size=1000, @@global.max_join_size=2000;
select @@local.max_join_size, @@global.max_join_size;
@@session.max_join_size @@global.max_join_size
...
...
mysql-test/t/variables.test
View file @
57541e72
...
...
@@ -34,7 +34,8 @@ drop table t1;
set
max_join_size
=
100
;
show
variables
like
'max_join_size'
;
show
global
variables
like
'max_join_size'
;
# Removed, because it has different value with/without BIG_TABLES
#show global variables like 'max_join_size';
set
GLOBAL
max_join_size
=
2000
;
show
global
variables
like
'max_join_size'
;
set
max_join_size
=
DEFAULT
;
...
...
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