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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d89fd828
Commit
d89fd828
authored
Jan 18, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into pcgem.rdg.cyberkinetica.com:/usr/home/acurtis/work/wl1280-fix
parents
62e9ab45
cf2b6eda
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
5 deletions
+6
-5
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
mysql-test/r/derived.result
mysql-test/r/derived.result
+1
-1
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+1
-1
mysql-test/r/warnings.result
mysql-test/r/warnings.result
+2
-2
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
BitKeeper/etc/logging_ok
View file @
d89fd828
...
...
@@ -5,6 +5,7 @@ Administrator@fred.
Miguel@light.local
Sinisa@sinisa.nasamreza.org
WAX@sergbook.mysql.com
acurtis@pcgem.rdg.cyberkinetica.com
administrador@light.hegel.local
ahlentz@co3064164-a.rochd1.qld.optusnet.com.au
akishkin@work.mysql.com
...
...
mysql-test/r/derived.result
View file @
d89fd828
...
...
@@ -256,7 +256,7 @@ KEY t1_SortIndex (SORTORDER),
KEY t1_IdIndex (OBJECTID)
) TYPE=MyISAM DEFAULT CHARSET=latin1;
Warnings:
Warning 1286 'TYPE=
database_engine' is deprecated. Use 'ENGINE=databas
e_engine' instead.
Warning 1286 'TYPE=
storage_engine' is deprecated. Use 'ENGINE=storag
e_engine' instead.
CREATE TABLE t2 (
ID int(11) default NULL,
PARID int(11) default NULL,
...
...
mysql-test/r/symlink.result
View file @
d89fd828
...
...
@@ -66,7 +66,7 @@ t9 CREATE TABLE `t9` (
drop database mysqltest;
create table t1 (a int not null) type=myisam;
Warnings:
Warning 1286 'TYPE=
database_engine' is deprecated. Use 'ENGINE=databas
e_engine' instead.
Warning 1286 'TYPE=
storage_engine' is deprecated. Use 'ENGINE=storag
e_engine' instead.
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
...
...
mysql-test/r/warnings.result
View file @
d89fd828
...
...
@@ -128,10 +128,10 @@ Warning 1265 Using storage engine MyISAM for table 't1'
drop table t1;
create table t1 (id int) type=heap;
Warnings:
Warning 1286 'TYPE=
database_engine' is deprecated. Use 'ENGINE=databas
e_engine' instead.
Warning 1286 'TYPE=
storage_engine' is deprecated. Use 'ENGINE=storag
e_engine' instead.
alter table t1 type=myisam;
Warnings:
Warning 1286 'TYPE=
database_engine' is deprecated. Use 'ENGINE=databas
e_engine' instead.
Warning 1286 'TYPE=
storage_engine' is deprecated. Use 'ENGINE=storag
e_engine' instead.
drop table t1;
set table_type=MYISAM;
Warnings:
...
...
sql/sql_yacc.yy
View file @
d89fd828
...
...
@@ -1077,7 +1077,7 @@ create_table_options:
create_table_option:
ENGINE_SYM opt_equal storage_engines { Lex->create_info.db_type= $3; }
| TYPE_SYM opt_equal storage_engines { Lex->create_info.db_type= $3; WARN_DEPRECATED("TYPE=
database_engine","ENGINE=databas
e_engine"); }
| TYPE_SYM opt_equal storage_engines { Lex->create_info.db_type= $3; WARN_DEPRECATED("TYPE=
storage_engine","ENGINE=storag
e_engine"); }
| MAX_ROWS opt_equal ulonglong_num { Lex->create_info.max_rows= $3; Lex->create_info.used_fields|= HA_CREATE_USED_MAX_ROWS;}
| MIN_ROWS opt_equal ulonglong_num { Lex->create_info.min_rows= $3; Lex->create_info.used_fields|= HA_CREATE_USED_MIN_ROWS;}
| AVG_ROW_LENGTH opt_equal ULONG_NUM { Lex->create_info.avg_row_length=$3; Lex->create_info.used_fields|= HA_CREATE_USED_AVG_ROW_LENGTH;}
...
...
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