[Maria-developers] bzr commit into MariaDB 5.1, with Maria 1.5:maria branch (knielsen:2770)

2009-10-09 Thread knielsen
#At lp:maria 2770 kniel...@knielsen-hq.org 2009-10-09 Implement mysqltest --enable_prepare_warnings to properly fix some test failures. The --enable_prepare_warnings allows to not discard warnings from autorepair of crashed table in --ps-protocol mode. Use

[Maria-developers] bzr commit into MariaDB 5.1, with Maria 1.5:maria branch (knielsen:2773)

2009-10-09 Thread knielsen
#At lp:maria 2773 kniel...@knielsen-hq.org 2009-10-09 Implement mysqltest --enable_prepare_warnings to properly fix some test failures. The --enable_prepare_warnings allows to not discard warnings from autorepair of crashed table in --ps-protocol mode. Use

[Maria-developers] bzr commit into MariaDB 5.1, with Maria 1.5:maria branch (knielsen:2774) Bug#39249

2009-10-09 Thread knielsen
#At lp:maria 2774 kniel...@knielsen-hq.org 2009-10-09 [merge] Merge Sanja's fix of BUG#39249 into MariaDB 5.1.38 release clone. added: BUILD/compile-pentium-debug-max-no-qc modified: BUILD/SETUP.sh sql/mysql_priv.h storage/maria/ha_maria.cc

Re: [Maria-developers] A mess with sql_alloc() ?

2009-10-09 Thread Kristian Nielsen
Alexi1952 writes: > mysql_priv.h: > (1)void *sql_alloc(size_t); > So I redefined sql_alloc() in a client context: > > void *sql_alloc(size_t size) { ... } > ... > #include "sql_string.h" > #include "sql_list.h" (Any reason you put the definition before the #

Re: [Maria-developers] A mess with sql_alloc() ?

2009-10-09 Thread Alexi1952
Thanks for your comments! > In any case extern declarations like this should be avoided, much better to > only have the declaration in one place in some *.h file. I agree. Currently, we have: mysql_priv.h: #ifndef MYSQL_CLIENT ... void *sql_alloc(size_t); ...

[Maria-developers] bzr commit into MariaDB 5.1, with Maria 1.5:maria branch (knielsen:2775)

2009-10-09 Thread knielsen
#At lp:maria 2775 kniel...@knielsen-hq.org 2009-10-09 Fix many test failures in parts test suite with --embedded-server. Fix some connect options to work with embedded. Disable in --embedded tests that rely on connecting to mysqld externally by spawning mys

Re: [Maria-developers] A mess with sql_alloc() ?

2009-10-09 Thread Kristian Nielsen
Alexi1952 writes: > Thanks for your comments! > >> In any case extern declarations like this should be avoided, much better to >> only have the declaration in one place in some *.h file. > > I agree. Currently, we have: > > mysql_priv.h: > > #ifndef MYSQL_CLIENT > ... > vo