Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
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
Esteban Blanc
proview
Commits
98a57323
Commit
98a57323
authored
Dec 09, 2012
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wb mysql type -> engine in create table statement
parent
abb63ade
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
wb/lib/wb/src/wb_dbms.cpp
wb/lib/wb/src/wb_dbms.cpp
+6
-6
No files found.
wb/lib/wb/src/wb_dbms.cpp
View file @
98a57323
...
@@ -292,37 +292,37 @@ int wb_dbms::createDb()
...
@@ -292,37 +292,37 @@ int wb_dbms::createDb()
" oid bigint not null,"
" oid bigint not null,"
" head longblob not null,"
" head longblob not null,"
" primary key (oid)"
" primary key (oid)"
")
typ
e = innodb;"
);
")
engin
e = innodb;"
);
rc
=
m_t_rbody
->
create
(
"create table rbody ("
rc
=
m_t_rbody
->
create
(
"create table rbody ("
" oid bigint not null,"
" oid bigint not null,"
" body longblob,"
" body longblob,"
" primary key (oid)"
" primary key (oid)"
")
typ
e = innodb;"
);
")
engin
e = innodb;"
);
rc
=
m_t_dbody
->
create
(
"create table dbody ("
rc
=
m_t_dbody
->
create
(
"create table dbody ("
" oid bigint not null,"
" oid bigint not null,"
" body longblob,"
" body longblob,"
" primary key (oid)"
" primary key (oid)"
")
typ
e = innodb;"
);
")
engin
e = innodb;"
);
rc
=
m_t_class
->
create
(
"create table class ("
rc
=
m_t_class
->
create
(
"create table class ("
" cidoix bigint not null,"
" cidoix bigint not null,"
" primary key (cidoix)"
" primary key (cidoix)"
")
typ
e = innodb;"
);
")
engin
e = innodb;"
);
rc
=
m_t_name
->
create
(
"create table name ("
rc
=
m_t_name
->
create
(
"create table name ("
" poid bigint not null,"
" poid bigint not null,"
" normname tinyblob not null,"
" normname tinyblob not null,"
" oid bigint not null,"
" oid bigint not null,"
" primary key (poid, normname(31))"
" primary key (poid, normname(31))"
")
typ
e = innodb;"
);
")
engin
e = innodb;"
);
rc
=
m_t_info
->
create
(
"create table info ("
rc
=
m_t_info
->
create
(
"create table info ("
" id int not null,"
" id int not null,"
" volume longblob not null,"
" volume longblob not null,"
" primary key (id)"
" primary key (id)"
")
typ
e = innodb;"
);
")
engin
e = innodb;"
);
#if 0
#if 0
try {
try {
...
...
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