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
b68f0437
Commit
b68f0437
authored
Aug 24, 2006
by
acurtis/antony@xiphis.org/ltantony.xiphis.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for windows build
parent
d4118813
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
3 deletions
+13
-3
CMakeLists.txt
CMakeLists.txt
+3
-0
libmysqld/CMakeLists.txt
libmysqld/CMakeLists.txt
+4
-2
sql/CMakeLists.txt
sql/CMakeLists.txt
+3
-0
sql/handler.cc
sql/handler.cc
+1
-1
storage/heap/CMakeLists.txt
storage/heap/CMakeLists.txt
+1
-0
storage/myisammrg/CMakeLists.txt
storage/myisammrg/CMakeLists.txt
+1
-0
No files found.
CMakeLists.txt
View file @
b68f0437
...
...
@@ -140,6 +140,9 @@ ENDIF(WITH_CSV_STORAGE_ENGINE)
IF
(
WITH_EXAMPLE_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
storage/example
)
ENDIF
(
WITH_EXAMPLE_STORAGE_ENGINE
)
IF
(
WITH_FEDERATED_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
storage/federated
)
ENDIF
(
WITH_FEDERATED_STORAGE_ENGINE
)
IF
(
WITH_INNOBASE_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
storage/innobase
)
ENDIF
(
WITH_INNOBASE_STORAGE_ENGINE
)
...
...
libmysqld/CMakeLists.txt
View file @
b68f0437
...
...
@@ -30,8 +30,7 @@ ADD_LIBRARY(mysqldemb emb_qcache.cc libmysqld.c lib_sql.cc
../sql-common/pack.c ../sql/derror.cc ../sql/event_scheduler.cc
../sql/event_timed.cc ../sql/events.cc ../sql/discover.cc
../sql/field_conv.cc ../sql/field.cc ../sql/filesort.cc
../sql/gstream.cc ../sql/ha_heap.cc ../sql/ha_myisam.cc
../sql/ha_myisammrg.cc
${
mysql_se_ha_src
}
../sql/gstream.cc
${
mysql_se_ha_src
}
../sql/handler.cc ../sql/hash_filo.cc
../sql/hostname.cc ../sql/init.cc ../sql/item_buff.cc
../sql/item_cmpfunc.cc ../sql/item.cc ../sql/item_create.cc
...
...
@@ -80,6 +79,9 @@ ENDIF(WITH_ARCHIVE_STORAGE_ENGINE)
IF
(
WITH_EXAMPLE_STORAGE_ENGINE
)
ADD_DEPENDENCIES
(
mysqlserver example
)
ENDIF
(
WITH_EXAMPLE_STORAGE_ENGINE
)
IF
(
WITH_FEDERATED_STORAGE_ENGINE
)
ADD_DEPENDENCIES
(
mysqlserver federated
)
ENDIF
(
WITH_FEDERATED_STORAGE_ENGINE
)
IF
(
WITH_INNOBASE_STORAGE_ENGINE
)
ADD_DEPENDENCIES
(
mysqlserver innobase
)
ENDIF
(
WITH_INNOBASE_STORAGE_ENGINE
)
...
...
sql/CMakeLists.txt
View file @
b68f0437
...
...
@@ -75,6 +75,9 @@ ENDIF(WITH_CSV_STORAGE_ENGINE)
IF
(
WITH_EXAMPLE_STORAGE_ENGINE
)
TARGET_LINK_LIBRARIES
(
mysqld example
)
ENDIF
(
WITH_EXAMPLE_STORAGE_ENGINE
)
IF
(
WITH_FEDERATED_STORAGE_ENGINE
)
TARGET_LINK_LIBRARIES
(
mysqld federated
)
ENDIF
(
WITH_FEDERATED_STORAGE_ENGINE
)
IF
(
WITH_INNOBASE_STORAGE_ENGINE
)
TARGET_LINK_LIBRARIES
(
mysqld innobase
)
ENDIF
(
WITH_INNOBASE_STORAGE_ENGINE
)
...
...
sql/handler.cc
View file @
b68f0437
...
...
@@ -3515,7 +3515,7 @@ int handler::ha_reset()
/* Check that we have called all proper delallocation functions */
DBUG_ASSERT
((
byte
*
)
table
->
def_read_set
.
bitmap
+
table
->
s
->
column_bitmap_size
==
(
char
*
)
table
->
def_write_set
.
bitmap
);
(
byte
*
)
table
->
def_write_set
.
bitmap
);
DBUG_ASSERT
(
bitmap_is_set_all
(
&
table
->
s
->
all_set
));
DBUG_ASSERT
(
table
->
key_read
==
0
);
/* ensure that ha_index_end / ha_rnd_end has been called */
...
...
storage/heap/CMakeLists.txt
View file @
b68f0437
...
...
@@ -6,6 +6,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/zlib
${
CMAKE_SOURCE_DIR
}
/regex
${
CMAKE_SOURCE_DIR
}
/extra/yassl/include
)
ADD_LIBRARY
(
heap _check.c _rectest.c hp_block.c hp_clear.c hp_close.c hp_create.c
ha_heap.cc
hp_delete.c hp_extra.c hp_hash.c hp_info.c hp_open.c hp_panic.c
hp_rename.c hp_rfirst.c hp_rkey.c hp_rlast.c hp_rnext.c hp_rprev.c
hp_rrnd.c hp_rsame.c hp_scan.c hp_static.c hp_update.c hp_write.c
)
storage/myisammrg/CMakeLists.txt
View file @
b68f0437
...
...
@@ -6,6 +6,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/zlib
${
CMAKE_SOURCE_DIR
}
/regex
${
CMAKE_SOURCE_DIR
}
/extra/yassl/include
)
ADD_LIBRARY
(
myisammrg myrg_close.c myrg_create.c myrg_delete.c myrg_extra.c myrg_info.c
ha_myisammrg.cc
myrg_locking.c myrg_open.c myrg_panic.c myrg_queue.c myrg_range.c
myrg_rfirst.c myrg_rkey.c myrg_rlast.c myrg_rnext.c myrg_rnext_same.c
myrg_rprev.c myrg_rrnd.c myrg_rsame.c myrg_static.c myrg_update.c
...
...
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