Commit 1a905ce2 authored by unknown's avatar unknown

merge


Docs/glibc-2.2.5.patch:
  Auto merged
Docs/manual.texi:
  Auto merged
sql/item_strfunc.cc:
  Auto merged
parents 387e77d1 8a32ef1c
...@@ -49850,6 +49850,8 @@ not yet 100% confident in this code. ...@@ -49850,6 +49850,8 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.51 @appendixsubsec Changes in release 3.23.51
@itemize @bullet @itemize @bullet
@item @item
Fixed bug in @code{CONCAT_WS()} that cut the result.
@item
Changed name of variables @code{Com_show_master_stat} to Changed name of variables @code{Com_show_master_stat} to
@code{Com_show_master_status} and @code{Com_show_slave_stat} to @code{Com_show_master_status} and @code{Com_show_slave_stat} to
@code{Com_show_slave_status}. @code{Com_show_slave_status}.
number alpha new
1413006 idlfmv 1413006<---->idlfmv
1413065 smpsfz 1413065<---->smpsfz
1413127 sljrhx 1413127<---->sljrhx
1413304 qerfnd 1413304<---->qerfnd
new
1413006<---->idlfmv
number alpha new
1413006 idlfmv 1413006<->idlfmv
number alpha new
1413006 idlfmv 1413006-idlfmv-idlfmv-idlfmv-idlfmv-idlfmv-idlfmv-idlfmv
number alpha new
1413006 idlfmv 1413006<------------------>idlfmv
#
# Test of problem with CONCAT_WS() and long separators.
#
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 ( number INT NOT NULL, alpha CHAR(6) NOT NULL );
INSERT INTO t1 VALUES (1413006,'idlfmv'),
(1413065,'smpsfz'),(1413127,'sljrhx'),(1413304,'qerfnd');
SELECT number, alpha, CONCAT_WS('<---->',number,alpha) AS new
FROM t1 GROUP BY number;
SELECT CONCAT_WS('<---->',number,alpha) AS new
FROM t1 GROUP BY new LIMIT 1;
SELECT number, alpha, CONCAT_WS('<->',number,alpha) AS new
FROM t1 GROUP BY new LIMIT 1;
SELECT number, alpha, CONCAT_WS('-',number,alpha,alpha,alpha,alpha,alpha,alpha,alpha) AS new
FROM t1 GROUP BY new LIMIT 1;
SELECT number, alpha, CONCAT_WS('<------------------>',number,alpha) AS new
FROM t1 GROUP BY new LIMIT 1;
drop table t1;
...@@ -432,6 +432,7 @@ int my_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, ...@@ -432,6 +432,7 @@ int my_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
} }
#endif #endif
#ifdef HPUX #ifdef HPUX
int my_pthread_mutex_trylock(pthread_mutex_t *mutex) int my_pthread_mutex_trylock(pthread_mutex_t *mutex)
{ {
......
...@@ -475,7 +475,7 @@ null: ...@@ -475,7 +475,7 @@ null:
void Item_func_concat_ws::fix_length_and_dec() void Item_func_concat_ws::fix_length_and_dec()
{ {
max_length=0; max_length=separator->max_length*(arg_count-1);
for (uint i=0 ; i < arg_count ; i++) for (uint i=0 ; i < arg_count ; i++)
max_length+=args[i]->max_length; max_length+=args[i]->max_length;
if (max_length > MAX_BLOB_WIDTH) if (max_length > MAX_BLOB_WIDTH)
......
...@@ -209,16 +209,16 @@ ...@@ -209,16 +209,16 @@
"E' scaduto il timeout per l'attesa del lock", "E' scaduto il timeout per l'attesa del lock",
"Il numero totale di lock e' maggiore della grandezza della tabella di lock", "Il numero totale di lock e' maggiore della grandezza della tabella di lock",
"I lock di aggiornamento non possono essere acquisiti durante una transazione 'READ UNCOMMITTED'", "I lock di aggiornamento non possono essere acquisiti durante una transazione 'READ UNCOMMITTED'",
"DROP DATABASE not allowed while thread is holding global read lock", "DROP DATABASE non e' permesso mentre il thread ha un lock globale di lettura",
"CREATE DATABASE not allowed while thread is holding global read lock", "CREATE DATABASE non e' permesso mentre il thread ha un lock globale di lettura",
"Wrong arguments to %s", "Argomenti errati a %s",
"%-.32s@%-.64s is not allowed to create new users", "A %-.32s@%-.64s non e' permesso creare nuovi utenti",
"Incorrect table definition; All MERGE tables must be in the same database", "Definizione della tabella errata; tutte le tabelle di tipo MERGE devono essere nello stesso database",
"Deadlock found when trying to get lock; Try restarting transaction", "Trovato deadlock durante il lock; Provare a far ripartire la transazione",
"The used table type doesn't support FULLTEXT indexes", "La tabella usata non supporta gli indici FULLTEXT",
"Cannot add foreign key constraint", "Impossibile aggiungere il vincolo di integrita' referenziale (foreign key constraint)",
"Cannot add a child row: a foreign key constraint fails", "Impossibile aggiungere la riga: un vincolo d'integrita' referenziale non e' soddisfatto",
"Cannot delete a parent row: a foreign key constraint fails", "Impossibile cancellare la riga: un vincolo d'integrita' referenziale non e' soddisfatto",
"Error connecting to master: %-.128s", "Error connecting to master: %-.128s",
"Error running query on master: %-.128s", "Error running query on master: %-.128s",
"Error when executing command %s: %-.128s", "Error when executing command %s: %-.128s",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment