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
32fed1e8
Commit
32fed1e8
authored
Oct 12, 2003
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrong ER_TOO_BIG_FOR_UNCOMPRESS error in UNCOMPRESS() fixed.
typo in error message text corrected. new tests added
parent
54533936
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
72 additions
and
55 deletions
+72
-55
mysql-test/r/func_compress.result
mysql-test/r/func_compress.result
+16
-4
mysql-test/t/func_compress.test
mysql-test/t/func_compress.test
+7
-3
sql/item_strfunc.cc
sql/item_strfunc.cc
+3
-2
sql/share/czech/errmsg.txt
sql/share/czech/errmsg.txt
+2
-2
sql/share/danish/errmsg.txt
sql/share/danish/errmsg.txt
+2
-2
sql/share/dutch/errmsg.txt
sql/share/dutch/errmsg.txt
+2
-2
sql/share/english/errmsg.txt
sql/share/english/errmsg.txt
+2
-2
sql/share/estonian/errmsg.txt
sql/share/estonian/errmsg.txt
+2
-2
sql/share/french/errmsg.txt
sql/share/french/errmsg.txt
+2
-2
sql/share/german/errmsg.txt
sql/share/german/errmsg.txt
+2
-2
sql/share/greek/errmsg.txt
sql/share/greek/errmsg.txt
+2
-2
sql/share/hungarian/errmsg.txt
sql/share/hungarian/errmsg.txt
+2
-2
sql/share/italian/errmsg.txt
sql/share/italian/errmsg.txt
+2
-2
sql/share/japanese/errmsg.txt
sql/share/japanese/errmsg.txt
+2
-2
sql/share/korean/errmsg.txt
sql/share/korean/errmsg.txt
+2
-2
sql/share/norwegian-ny/errmsg.txt
sql/share/norwegian-ny/errmsg.txt
+2
-2
sql/share/norwegian/errmsg.txt
sql/share/norwegian/errmsg.txt
+2
-2
sql/share/polish/errmsg.txt
sql/share/polish/errmsg.txt
+2
-2
sql/share/portuguese/errmsg.txt
sql/share/portuguese/errmsg.txt
+2
-2
sql/share/romanian/errmsg.txt
sql/share/romanian/errmsg.txt
+2
-2
sql/share/russian/errmsg.txt
sql/share/russian/errmsg.txt
+2
-2
sql/share/serbian/errmsg.txt
sql/share/serbian/errmsg.txt
+2
-2
sql/share/slovak/errmsg.txt
sql/share/slovak/errmsg.txt
+2
-2
sql/share/spanish/errmsg.txt
sql/share/spanish/errmsg.txt
+2
-2
sql/share/swedish/errmsg.txt
sql/share/swedish/errmsg.txt
+2
-2
sql/share/ukrainian/errmsg.txt
sql/share/ukrainian/errmsg.txt
+2
-2
No files found.
mysql-test/r/func_compress.result
View file @
32fed1e8
...
...
@@ -40,9 +40,21 @@ uncompress(compress(""))
select uncompressed_length("");
uncompressed_length("")
0
select compress(NULL);
compress(NULL)
create table t1 (a text);
insert t1 values (compress(null)), ('A\0\0\0BBBBBBBB'), (compress(space(50000))), (space(50000));
select length(a) from t1;
length(a)
NULL
select uncompress(NULL);
uncompress(NULL)
12
76
50000
select length(uncompress(a)) from t1;
length(uncompress(a))
NULL
NULL
50000
NULL
Warnings:
Error 1258 Z_DATA_ERROR: Input data was corrupted for zlib
Error 1255 Too big size of uncompressed data. The maximum size is 1048576. (probably, length of uncompressed data was corrupted)
drop table t1;
mysql-test/t/func_compress.test
View file @
32fed1e8
...
...
@@ -24,8 +24,12 @@ select uncompress(compress(""));
select
uncompressed_length
(
""
);
#
#
NULL (Bug #1333)
#
errors
#
select
compress
(
NULL
);
select
uncompress
(
NULL
);
create
table
t1
(
a
text
);
insert
t1
values
(
compress
(
null
)),
(
'A\0\0\0BBBBBBBB'
),
(
compress
(
space
(
50000
))),
(
space
(
50000
));
select
length
(
a
)
from
t1
;
select
length
(
uncompress
(
a
))
from
t1
;
drop
table
t1
;
sql/item_strfunc.cc
View file @
32fed1e8
...
...
@@ -2609,11 +2609,12 @@ String *Item_func_uncompress::val_str(String *str)
int
err
=
Z_OK
;
uint
code
;
if
(
new_size
>
MAX_BLOB_WIDTH
)
if
(
new_size
>
current_thd
->
variables
.
max_allowed_packet
)
{
push_warning_printf
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
ER_TOO_BIG_FOR_UNCOMPRESS
,
ER
(
ER_TOO_BIG_FOR_UNCOMPRESS
),
MAX_BLOB_WIDTH
);
ER
(
ER_TOO_BIG_FOR_UNCOMPRESS
),
current_thd
->
variables
.
max_allowed_packet
);
null_value
=
0
;
return
0
;
}
...
...
sql/share/czech/errmsg.txt
View file @
32fed1e8
...
...
@@ -268,8 +268,8 @@ character-set=latin2
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/danish/errmsg.txt
View file @
32fed1e8
...
...
@@ -262,8 +262,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/dutch/errmsg.txt
View file @
32fed1e8
...
...
@@ -270,8 +270,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/english/errmsg.txt
View file @
32fed1e8
...
...
@@ -259,8 +259,8 @@ character-set=latin1
"Slave is already running"
"Slave has already been stopped"
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)"
"Z_
BUF
_ERROR: Not enough memory available for zlib"
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)"
"Z_
MEM
_ERROR: Not enough memory available for zlib"
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)"
"Z_DATA_ERROR: Input data was corrupted for zlib"
"%d line(s) was(were) cut by group_concat()"
"Record count is fewer than the column count at row %ld";
...
...
sql/share/estonian/errmsg.txt
View file @
32fed1e8
...
...
@@ -264,8 +264,8 @@ character-set=latin7
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/french/errmsg.txt
View file @
32fed1e8
...
...
@@ -259,8 +259,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/german/errmsg.txt
View file @
32fed1e8
...
...
@@ -271,8 +271,8 @@ character-set=latin1
"Slave läuft bereits",
"Slave wurde bereits angehalten",
"Unkomprimierte Daten sind zu groß. Die maximale Größe beträgt %d",
"Z_
BUF
_ERROR: Für zlib steht nicht genug Speicher zur Verfügung",
"Z_
MEM
_ERROR: Im Ausgabepuffer ist nicht genug Platz für zlib vorhanden (wahrscheinlich wurde die Länge der unkomprimierten Daten beschädigt)",
"Z_
MEM
_ERROR: Für zlib steht nicht genug Speicher zur Verfügung",
"Z_
BUF
_ERROR: Im Ausgabepuffer ist nicht genug Platz für zlib vorhanden (wahrscheinlich wurde die Länge der unkomprimierten Daten beschädigt)",
"Z_DATA_ERROR: Eingabedaten für zlib beschädigt",
"%d Zeile(n) durch group_concat() abgeschnitten",
"Anzahl der Datensätze in Zeile %ld geringer als Anzahl der Spalten",
...
...
sql/share/greek/errmsg.txt
View file @
32fed1e8
...
...
@@ -259,8 +259,8 @@ character-set=greek
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/hungarian/errmsg.txt
View file @
32fed1e8
...
...
@@ -261,8 +261,8 @@ character-set=latin2
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/italian/errmsg.txt
View file @
32fed1e8
...
...
@@ -259,8 +259,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/japanese/errmsg.txt
View file @
32fed1e8
...
...
@@ -261,8 +261,8 @@ character-set=ujis
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/korean/errmsg.txt
View file @
32fed1e8
...
...
@@ -259,8 +259,8 @@ character-set=euckr
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/norwegian-ny/errmsg.txt
View file @
32fed1e8
...
...
@@ -261,8 +261,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/norwegian/errmsg.txt
View file @
32fed1e8
...
...
@@ -261,8 +261,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/polish/errmsg.txt
View file @
32fed1e8
...
...
@@ -263,8 +263,8 @@ character-set=latin2
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/portuguese/errmsg.txt
View file @
32fed1e8
...
...
@@ -260,8 +260,8 @@ character-set=latin1
"O slave já está rodando",
"O slave já está parado",
"Tamanho muito grande dos dados des comprimidos. O máximo tamanho é %d. (provavelmente, o comprimento dos dados descomprimidos está corrupto)",
"Z_
BUF
_ERROR: Não suficiente memória disponível para zlib",
"Z_
MEM
_ERROR: Não suficiente espaço no buffer emissor para zlib (provavelmente, o comprimento dos dados descomprimidos está corrupto)",
"Z_
MEM
_ERROR: Não suficiente memória disponível para zlib",
"Z_
BUF
_ERROR: Não suficiente espaço no buffer emissor para zlib (provavelmente, o comprimento dos dados descomprimidos está corrupto)",
"Z_DATA_ERROR: Dados de entrada está corrupto para zlib",
"%d linha(s) foi(foram) cortada(s) por group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/romanian/errmsg.txt
View file @
32fed1e8
...
...
@@ -263,8 +263,8 @@ character-set=latin2
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/russian/errmsg.txt
View file @
32fed1e8
...
...
@@ -261,8 +261,8 @@ character-set=koi8r
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/serbian/errmsg.txt
View file @
32fed1e8
...
...
@@ -254,8 +254,8 @@ character-set=cp1250
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/slovak/errmsg.txt
View file @
32fed1e8
...
...
@@ -267,8 +267,8 @@ character-set=latin2
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/spanish/errmsg.txt
View file @
32fed1e8
...
...
@@ -261,8 +261,8 @@ character-set=latin1
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/swedish/errmsg.txt
View file @
32fed1e8
...
...
@@ -259,8 +259,8 @@ character-set=latin1
"Slaven har redan startat",
"Slaven har redan stoppat",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d rad(er) kapades av group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
sql/share/ukrainian/errmsg.txt
View file @
32fed1e8
...
...
@@ -264,8 +264,8 @@ character-set=koi8u
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
"Z_
BUF
_ERROR: Not enough memory available for zlib",
"Z_
MEM
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_
MEM
_ERROR: Not enough memory available for zlib",
"Z_
BUF
_ERROR: Not enough room in the output buffer for zlib (probably, length of uncompressed data was corrupted)",
"Z_DATA_ERROR: Input data was corrupted for zlib",
"%d line(s) was(were) cut by group_concat()",
"Record count is fewer than the column count at row %ld";
...
...
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