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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d6c97c91
Commit
d6c97c91
authored
May 15, 2010
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Automerge latest MariaDB 5.1 trunk into 5.1.46 release.
parents
c39eb30a
febb68f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
11 deletions
+18
-11
scripts/CMakeLists.txt
scripts/CMakeLists.txt
+7
-7
sql/sql_select.cc
sql/sql_select.cc
+5
-0
win/make_mariadb_win_dist
win/make_mariadb_win_dist
+6
-4
No files found.
scripts/CMakeLists.txt
View file @
d6c97c91
...
...
@@ -56,22 +56,22 @@ SET(pkgdatadir ${prefix}/share)
SET
(
localstatedir
${
prefix
}
/data
)
CONFIGURE_FILE
(
mysql_config.pl.in
scripts/mysql_config.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysql_config.pl ESCAPE_QUOTES @ONLY
)
CONFIGURE_FILE
(
mysql_convert_table_format.sh
scripts/mysql_convert_table_format.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysql_convert_table_format.pl ESCAPE_QUOTES @ONLY
)
CONFIGURE_FILE
(
mysql_install_db.pl.in
scripts/mysql_install_db.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysql_install_db.pl ESCAPE_QUOTES @ONLY
)
CONFIGURE_FILE
(
mysql_secure_installation.pl.in
scripts/mysql_secure_installation.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysql_secure_installation.pl ESCAPE_QUOTES @ONLY
)
CONFIGURE_FILE
(
mysqld_multi.sh
scripts/mysqld_multi.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysqld_multi.pl ESCAPE_QUOTES @ONLY
)
CONFIGURE_FILE
(
mysqldumpslow.sh
scripts/mysqldumpslow.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysqldumpslow.pl ESCAPE_QUOTES @ONLY
)
CONFIGURE_FILE
(
mysqlhotcopy.sh
scripts/mysqlhotcopy.pl ESCAPE_QUOTES @ONLY
)
${
CMAKE_BINARY_DIR
}
/
scripts/mysqlhotcopy.pl ESCAPE_QUOTES @ONLY
)
sql/sql_select.cc
View file @
d6c97c91
...
...
@@ -11064,6 +11064,11 @@ create_internal_tmp_table_from_heap2(THD *thd, TABLE *table,
if
(
table
->
s
->
db_type
()
!=
heap_hton
||
error
!=
HA_ERR_RECORD_FILE_FULL
)
{
/*
We don't want this error to be converted to a warning, e.g. in case of
INSERT IGNORE ... SELECT.
*/
thd
->
fatal_error
();
table
->
file
->
print_error
(
error
,
MYF
(
0
));
DBUG_RETURN
(
1
);
}
...
...
win/make_mariadb_win_dist
View file @
d6c97c91
...
...
@@ -16,12 +16,14 @@ fi
set
-x
win/configure-mariadb.sh
if
[
"x_
$1
"
!=
"x_-nobuild"
]
;
then
win/configure-mariadb.sh
cmake
-G
"Visual Studio 9 2008"
cmake
-G
"Visual Studio 9 2008"
devenv.com MySQL.sln /build RelWithDebInfo
devenv.com MySQL.sln /build Debug
devenv.com MySQL.sln /build RelWithDebInfo
devenv.com MySQL.sln /build Debug
fi
# TODO extract version number
VER
=
`
cat
configure.in |
...
...
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