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
0c25993d
Commit
0c25993d
authored
May 21, 2003
by
venu@myvenu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix merge conflict by changing warning codes to new one
parent
7b2ac7f8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
13 deletions
+4
-13
mysql-test/r/create.result
mysql-test/r/create.result
+1
-1
mysql-test/r/warnings.result
mysql-test/r/warnings.result
+1
-0
mysql-test/t/warnings.test
mysql-test/t/warnings.test
+1
-0
sql/share/english/errmsg.txt
sql/share/english/errmsg.txt
+1
-12
No files found.
mysql-test/r/create.result
View file @
0c25993d
...
@@ -272,7 +272,7 @@ SELECT @@table_type;
...
@@ -272,7 +272,7 @@ SELECT @@table_type;
GEMINI
GEMINI
CREATE TABLE t1 (a int not null);
CREATE TABLE t1 (a int not null);
Warnings:
Warnings:
Warning 12
59
Using storage engine MYISAM for table 't1'
Warning 12
64
Using storage engine MYISAM for table 't1'
show create table t1;
show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
...
...
mysql-test/r/warnings.result
View file @
0c25993d
...
@@ -109,6 +109,7 @@ Warning 1263 Data truncated for column 'b' at row 10
...
@@ -109,6 +109,7 @@ Warning 1263 Data truncated for column 'b' at row 10
select @@warning_count;
select @@warning_count;
@@warning_count
@@warning_count
50
50
drop table t1;
create table t1 (id int) type=isam;
create table t1 (id int) type=isam;
Warnings:
Warnings:
Warning 1264 Using storage engine MYISAM for table 't1'
Warning 1264 Using storage engine MYISAM for table 't1'
...
...
mysql-test/t/warnings.test
View file @
0c25993d
...
@@ -74,6 +74,7 @@ select @@warning_count;
...
@@ -74,6 +74,7 @@ select @@warning_count;
#
#
# Test for handler type
# Test for handler type
#
#
drop
table
t1
;
create
table
t1
(
id
int
)
type
=
isam
;
create
table
t1
(
id
int
)
type
=
isam
;
alter
table
t1
type
=
isam
;
alter
table
t1
type
=
isam
;
drop
table
t1
;
drop
table
t1
;
sql/share/english/errmsg.txt
View file @
0c25993d
...
@@ -259,18 +259,7 @@
...
@@ -259,18 +259,7 @@
"Z_BUF_ERROR: Not enough memory available for zlib"
"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 room in the output buffer for zlib (probably, length of uncompressed data was corrupted)"
"Z_DATA_ERROR: Input data was corrupted for zlib"
"Z_DATA_ERROR: Input data was corrupted for zlib"
"%d line(s) was(were) cut by group_concat()"<<<<<<< local sql/share/english/errmsg.txt 1.79
"%d line(s) was(were) cut by group_concat()"
"Table '%-.64s' from one of SELECT's can not be used in %-.32s"
"Client does not support authentication protocol requested by server. Consider upgrading MySQL client"
"All parts of a SPATIAL KEY must be NOT NULL"
"COLLATION '%s' is not valid for CHARACTER SET '%s'"
"The slave was already running"
"The slave was already 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_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";
"Record count is fewer than the column count at row %ld";
"Record count is more than the column count at row %ld";
"Record count is more than the column count at row %ld";
"Data truncated, NULL supplied to NOT NULL column '%s' at row %ld";
"Data truncated, NULL supplied to NOT NULL column '%s' 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