| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This commit is based on the work of Michal Schorm, rebased on the
earliest MariaDB version.
Th command line used to generate this diff was:
find ./ -type f \
-exec sed -i -e 's/Foundation, Inc., 59 Temple Place, Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \
-exec sed -i -e 's/Foundation, Inc. 59 Temple Place.* Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \
-exec sed -i -e 's/MA.*.....-1307.*USA/MA 02110-1335 USA/g' {} \; \
-exec sed -i -e 's/Foundation, Inc., 59 Temple/Foundation, Inc., 51 Franklin/g' {} \; \
-exec sed -i -e 's/Place, Suite 330, Boston, MA.*02111-1307.*USA/Street, Fifth Floor, Boston, MA 02110-1335 USA/g' {} \; \
-exec sed -i -e 's/MA.*.....-1307/MA 02110-1335/g' {} \;
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
'size_t' to 'type', possible loss of data)
Handle string length as size_t, consistently (almost always:))
Change function prototypes to accept size_t, where in the past
ulong or uint were used. change local/member variables to size_t
when appropriate.
This fix excludes rocksdb, spider,spider, sphinx and connect for now.
|
|/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
include/ft_global.h:
Changed string size to 'size_t' (to avoid compiler warnings later)
include/maria.h:
Changed string size to 'size_t' (to avoid compiler warnings later)
mysql-test/r/show_check.result:
Don't use logging to tables, as there is no guarantee in which order tables are showed in 'show open tables'
mysql-test/suite/rpl/t/rpl_rotate_logs.test:
Use HIGH_PRIORITY inserts to avoid problem with concurrent inserts on the slave.
mysql-test/t/show_check-master.opt:
Don't use logging to tables, as there is no guarantee in which order tables are showed in 'show open tables'
sql/item.cc:
Fixed compiler warning
storage/maria/ft_maria.c:
Changed string size to 'size_t' (to avoid compiler warnings later)
storage/myisam/ft_boolean_search.c:
Fixed compiler warnings
storage/myisam/ft_myisam.c:
Changed string size to 'size_t' (to avoid compiler warnings later)
storage/myisam/ft_nlq_search.c:
Changed string size to 'size_t' (to avoid compiler warnings later)
storage/myisam/ft_parser.c:
Changed string size to 'size_t' (to avoid compiler warnings)
storage/myisam/ft_stopwords.c:
Changed string size to 'size_t' (to avoid compiler warnings)
storage/myisam/ftdefs.h:
Changed string size to 'size_t' (to avoid compiler warnings)
|
|
|
|
|
|
| |
BUILD/compile-pentium-debug-max:
Added definition after macro was removed from main tree. This will
be fixed back in main tree later.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
storage/maria/Makefile.am:
GPL license update
storage/maria/ft_maria.c:
GPL license update
storage/maria/ha_maria.cc:
GPL license update
storage/maria/ha_maria.h:
GPL license update
storage/maria/lockman.c:
GPL license update
storage/maria/lockman.h:
GPL license update
storage/maria/ma_bitmap.c:
GPL license update
storage/maria/ma_blockrec.c:
GPL license update
storage/maria/ma_blockrec.h:
GPL license update
storage/maria/ma_cache.c:
GPL license update
storage/maria/ma_changed.c:
GPL license update
storage/maria/ma_check.c:
GPL license update
storage/maria/ma_checkpoint.c:
GPL license update
storage/maria/ma_checkpoint.h:
GPL license update
storage/maria/ma_checksum.c:
GPL license update
storage/maria/ma_close.c:
GPL license update
storage/maria/ma_control_file.c:
GPL license update
storage/maria/ma_control_file.h:
GPL license update
storage/maria/ma_create.c:
GPL license update
storage/maria/ma_dbug.c:
GPL license update
storage/maria/ma_delete.c:
GPL license update
storage/maria/ma_delete_all.c:
GPL license update
storage/maria/ma_delete_table.c:
GPL license update
storage/maria/ma_dynrec.c:
GPL license update
storage/maria/ma_extra.c:
GPL license update
storage/maria/ma_ft_boolean_search.c:
GPL license update
storage/maria/ma_ft_eval.c:
GPL license update
storage/maria/ma_ft_eval.h:
GPL license update
storage/maria/ma_ft_nlq_search.c:
GPL license update
storage/maria/ma_ft_parser.c:
GPL license update
storage/maria/ma_ft_stem.c:
GPL license update
storage/maria/ma_ft_test1.c:
GPL license update
storage/maria/ma_ft_test1.h:
GPL license update
storage/maria/ma_ft_update.c:
GPL license update
storage/maria/ma_ftdefs.h:
GPL license update
storage/maria/ma_fulltext.h:
GPL license update
storage/maria/ma_info.c:
GPL license update
storage/maria/ma_init.c:
GPL license update
storage/maria/ma_key.c:
GPL license update
storage/maria/ma_keycache.c:
GPL license update
storage/maria/ma_least_recently_dirtied.c:
GPL license update
storage/maria/ma_least_recently_dirtied.h:
GPL license update
storage/maria/ma_locking.c:
GPL license update
storage/maria/ma_open.c:
GPL license update
storage/maria/ma_packrec.c:
GPL license update
storage/maria/ma_page.c:
GPL license update
storage/maria/ma_panic.c:
GPL license update
storage/maria/ma_preload.c:
GPL license update
storage/maria/ma_range.c:
GPL license update
storage/maria/ma_recovery.c:
GPL license update
storage/maria/ma_recovery.h:
GPL license update
storage/maria/ma_rename.c:
GPL license update
storage/maria/ma_rfirst.c:
GPL license update
storage/maria/ma_rkey.c:
GPL license update
storage/maria/ma_rlast.c:
GPL license update
storage/maria/ma_rnext.c:
GPL license update
storage/maria/ma_rnext_same.c:
GPL license update
storage/maria/ma_rprev.c:
GPL license update
storage/maria/ma_rrnd.c:
GPL license update
storage/maria/ma_rsame.c:
GPL license update
storage/maria/ma_rsamepos.c:
GPL license update
storage/maria/ma_rt_index.c:
GPL license update
storage/maria/ma_rt_index.h:
GPL license update
storage/maria/ma_rt_key.c:
GPL license update
storage/maria/ma_rt_key.h:
GPL license update
storage/maria/ma_rt_mbr.c:
GPL license update
storage/maria/ma_rt_mbr.h:
GPL license update
storage/maria/ma_rt_split.c:
GPL license update
storage/maria/ma_rt_test.c:
GPL license update
storage/maria/ma_scan.c:
GPL license update
storage/maria/ma_search.c:
GPL license update
storage/maria/ma_sort.c:
GPL license update
storage/maria/ma_sp_defs.h:
GPL license update
storage/maria/ma_sp_key.c:
GPL license update
storage/maria/ma_sp_test.c:
GPL license update
storage/maria/ma_static.c:
GPL license update
storage/maria/ma_statrec.c:
GPL license update
storage/maria/ma_test1.c:
GPL license update
storage/maria/ma_test2.c:
GPL license update
storage/maria/ma_test3.c:
GPL license update
storage/maria/ma_unique.c:
GPL license update
storage/maria/ma_update.c:
GPL license update
storage/maria/ma_write.c:
GPL license update
storage/maria/maria_chk.c:
GPL license update
storage/maria/maria_def.h:
GPL license update
storage/maria/maria_ftdump.c:
GPL license update
storage/maria/maria_pack.c:
GPL license update
storage/maria/tablockman.c:
GPL license update
storage/maria/tablockman.h:
GPL license update
storage/maria/trnman.c:
GPL license update
storage/maria/trnman.h:
GPL license update
|
|
storage/maria/ft_maria.c:
Rename: BitKeeper/deleted/.del-ft_maria.c -> storage/maria/ft_maria.c
configure.in:
maria moves to its plug.in
storage/maria/Makefile.am:
merging changes made to MyISAM into Maria.
ft_maria.c is still needed.
storage/maria/ha_maria.cc:
merging changes made to MyISAM into Maria
storage/maria/ma_dynrec.c:
merging changes made to MyISAM into Maria
storage/maria/ma_extra.c:
merging changes made to MyISAM into Maria
storage/maria/ma_ft_parser.c:
merging changes made to MyISAM into Maria
storage/maria/ma_open.c:
merging changes made to MyISAM into Maria
storage/maria/ma_sort.c:
merging changes made to MyISAM into Maria
storage/maria/ma_update.c:
merging changes made to MyISAM into Maria
storage/maria/ma_write.c:
merging changes made to MyISAM into Maria
storage/maria/maria_def.h:
merging changes made to MyISAM into Maria
storage/myisam/Makefile.am:
merging changes made to MyISAM into Maria
storage/maria/plug.in:
merging changes made to MyISAM into Maria
|