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
27469ec8
Commit
27469ec8
authored
Jun 03, 2003
by
venu@myvenu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Windows build fixups with the latest source
parent
e436736d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
17 deletions
+15
-17
VC++Files/client/mysqlclient.dsp
VC++Files/client/mysqlclient.dsp
+0
-4
VC++Files/libmysql/libmysql.dsp
VC++Files/libmysql/libmysql.dsp
+3
-7
VC++Files/sql/mysqld.dsp
VC++Files/sql/mysqld.dsp
+8
-0
include/config-win.h
include/config-win.h
+2
-0
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+0
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-2
sql/sql_insert.cc
sql/sql_insert.cc
+1
-1
sql/sql_show.cc
sql/sql_show.cc
+0
-2
No files found.
VC++Files/client/mysqlclient.dsp
View file @
27469ec8
...
...
@@ -430,10 +430,6 @@ SOURCE=..\mysys\safemalloc.c
# End Source File
# Begin Source File
SOURCE=.\select_test.c
# End Source File
# Begin Source File
SOURCE=..\mysys\sha1.c
# End Source File
# Begin Source File
...
...
VC++Files/libmysql/libmysql.dsp
View file @
27469ec8
...
...
@@ -215,10 +215,6 @@ SOURCE=.\libmysql.c
# End Source File
# Begin Source File
SOURCE=.\pack.c
# End Source File
# Begin Source File
SOURCE=.\Libmysql.def
# End Source File
# Begin Source File
...
...
@@ -403,15 +399,15 @@ SOURCE=..\sql\net_serv.cpp
# End Source File
# Begin Source File
SOURCE=.\pa
ssword
.c
SOURCE=.\pa
ck
.c
# End Source File
# Begin Source File
SOURCE=.
.\mysys\safemalloc
.c
SOURCE=.
\password
.c
# End Source File
# Begin Source File
SOURCE=..\
client\select_test
.c
SOURCE=..\
mysys\safemalloc
.c
# End Source File
# Begin Source File
...
...
VC++Files/sql/mysqld.dsp
View file @
27469ec8
...
...
@@ -486,6 +486,10 @@ SOURCE=.\item_func.cpp
# End Source File
# Begin Source File
SOURCE=.\item_geofunc.cpp
# End Source File
# Begin Source File
SOURCE=.\item_row.cpp
# End Source File
# Begin Source File
...
...
@@ -742,6 +746,10 @@ SOURCE=.\OPT_SUM.cpp
# End Source File
# Begin Source File
SOURCE=.\pack.c
# End Source File
# Begin Source File
SOURCE=.\password.c
!IF "$(CFG)" == "mysqld - Win32 Release"
...
...
include/config-win.h
View file @
27469ec8
...
...
@@ -333,3 +333,5 @@ inline double ulonglong2double(ulonglong value)
#define shared_memory_buffer_length 16000
#define default_shared_memory_base_name "MYSQL"
#define MYSQL_DEFAULT_CHARSET_NAME "latin1"
#define MYSQL_DEFAULT_COLLATION_NAME "latin1_swedish_ci"
sql/item_cmpfunc.cc
View file @
27469ec8
...
...
@@ -246,7 +246,6 @@ void Item_bool_func2::fix_length_and_dec()
We must set cmp_charset here as we may be called from for an automatic
generated item, like in natural join
*/
end:
set_cmp_charset
(
args
[
0
]
->
charset
(),
args
[
0
]
->
coercibility
,
args
[
1
]
->
charset
(),
args
[
1
]
->
coercibility
);
}
...
...
sql/mysqld.cc
View file @
27469ec8
...
...
@@ -423,7 +423,7 @@ Query_cache query_cache;
#endif
#ifdef HAVE_SMEM
char
*
shared_memory_base_name
=
default_shared_memory_base_name
;
my_
bool
opt_enable_shared_memory
;
bool
opt_enable_shared_memory
;
#endif
#include "sslopt-vars.h"
...
...
@@ -471,7 +471,6 @@ static void close_connections(void)
#ifdef EXTRA_DEBUG
int
count
=
0
;
#endif
NET
net
;
DBUG_ENTER
(
"close_connections"
);
/* Clear thread cache */
...
...
sql/sql_insert.cc
View file @
27469ec8
...
...
@@ -188,7 +188,7 @@ int mysql_insert(THD *thd,TABLE_LIST *table_list,
if
(
duplic
==
DUP_UPDATE
&&
!
table
->
insert_values
)
{
/* it should be allocated before Item::fix_fields() */
table
->
insert_values
=
alloc_root
(
&
table
->
mem_root
,
table
->
rec_buff_length
);
table
->
insert_values
=
(
byte
*
)
alloc_root
(
&
table
->
mem_root
,
table
->
rec_buff_length
);
if
(
!
table
->
insert_values
)
goto
abort
;
}
...
...
sql/sql_show.cc
View file @
27469ec8
...
...
@@ -1449,7 +1449,6 @@ int mysqld_show_collations(THD *thd, const char *wild)
List
<
Item
>
field_list
;
CHARSET_INFO
**
cs
;
Protocol
*
protocol
=
thd
->
protocol
;
char
flags
[
64
];
DBUG_ENTER
(
"mysqld_show_charsets"
);
...
...
@@ -1501,7 +1500,6 @@ int mysqld_show_charsets(THD *thd, const char *wild)
List
<
Item
>
field_list
;
CHARSET_INFO
**
cs
;
Protocol
*
protocol
=
thd
->
protocol
;
char
flags
[
64
];
DBUG_ENTER
(
"mysqld_show_charsets"
);
...
...
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