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
a6b608dc
Commit
a6b608dc
authored
Jul 30, 2002
by
paul@teton.kitebird.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge paul@work.mysql.com:/home/bk/mysql-4.0
into teton.kitebird.com:/home/paul/mysql-4.0
parents
f1a176d7
5fefb8d3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
Docs/Support/docbook-fixup.pl
Docs/Support/docbook-fixup.pl
+1
-1
Docs/manual.texi
Docs/manual.texi
+1
-1
sql/sql_olap.cc
sql/sql_olap.cc
+1
-1
sql/sql_select.cc
sql/sql_select.cc
+5
-2
No files found.
Docs/Support/docbook-fixup.pl
View file @
a6b608dc
...
...
@@ -38,7 +38,7 @@ $data =~ s/FIXUPmdashFIXUP/\&mdash\;/g;
$data
=~
s/FIXUPdoubledashFIXUP/--/g
;
$data
=~
s/FIXUPstrongFIXUP/<emphasis\ role\=
bold
>/g
;
$data
=~
s/FIXUPstrongFIXUP/<emphasis\ role\=
\"bold\"
>/g
;
$data
=~
s/FIXUPendstrongFIXUP/<\/emphasis>/g
;
$data
=~
s/FIXUPemphFIXUP/<emphasis>/g
;
...
...
Docs/manual.texi
View file @
a6b608dc
...
...
@@ -5594,7 +5594,7 @@ InnoDB: Doublewrite buffer created
InnoDB: creating foreign key constraint system tables
InnoDB: foreign key constraint system tables created
011024 10:58:25 InnoDB: Started
@end
example
@end example
For further information about running MySQL on Windows,
see @ref{Windows}.
sql/sql_olap.cc
View file @
a6b608dc
...
...
@@ -46,7 +46,7 @@ static int make_new_olap_select(LEX *lex, SELECT_LEX *select_lex, List<Item> new
{
THD
*
thd
=
current_thd
;
Item
*
item
,
*
new_item
;
Item_
string
*
constant
=
new
Item_string
(
"ALL"
,
3
);
Item_
null
*
constant
=
new
Item_null
(
"ALL"
);
SELECT_LEX
*
new_select
=
(
SELECT_LEX
*
)
thd
->
memdup
((
char
*
)
select_lex
,
sizeof
(
*
select_lex
));
if
(
!
new_select
)
...
...
sql/sql_select.cc
View file @
a6b608dc
...
...
@@ -4040,9 +4040,12 @@ static bool create_myisam_tmp_table(TABLE *table,TMP_TABLE_PARAM *param,
}
MI_CREATE_INFO
create_info
;
bzero
((
char
*
)
&
create_info
,
sizeof
(
create_info
));
if
((
options
&
(
OPTION_BIG_TABLES
|
SELECT_SMALL_RESULT
))
==
OPTION_BIG_TABLES
)
if
((
options
&
(
OPTION_BIG_TABLES
|
SELECT_SMALL_RESULT
))
!=
SELECT_SMALL_RESULT
)
{
create_info
.
data_file_length
=
~
(
ulonglong
)
0
;
create_info
.
max_rows
=
~
(
ulonglong
)
0
;
}
if
((
error
=
mi_create
(
table
->
real_name
,
table
->
keys
,
&
keydef
,
(
uint
)
(
param
->
recinfo
-
param
->
start_recinfo
),
...
...
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