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
81e46539
Commit
81e46539
authored
May 07, 2005
by
monty@mishka.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mishka.local:/home/my/mysql-5.0
parents
805a5327
e95d77c6
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
112 additions
and
42 deletions
+112
-42
include/my_global.h
include/my_global.h
+0
-12
mysql-test/r/ctype_latin2.result
mysql-test/r/ctype_latin2.result
+0
-0
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+3
-3
mysql-test/r/select.result
mysql-test/r/select.result
+21
-0
mysql-test/t/ctype_latin2.test
mysql-test/t/ctype_latin2.test
+7
-4
mysql-test/t/select.test
mysql-test/t/select.test
+27
-0
sql/item_sum.cc
sql/item_sum.cc
+6
-1
sql/share/charsets/Index.xml
sql/share/charsets/Index.xml
+3
-0
sql/share/charsets/cp1250.xml
sql/share/charsets/cp1250.xml
+23
-2
sql/share/charsets/latin2.xml
sql/share/charsets/latin2.xml
+16
-16
sql/sql_show.cc
sql/sql_show.cc
+6
-4
No files found.
include/my_global.h
View file @
81e46539
...
@@ -235,18 +235,6 @@ C_MODE_END
...
@@ -235,18 +235,6 @@ C_MODE_END
#define BAD_MEMCPY
#define BAD_MEMCPY
#endif
#endif
/* In Linux-alpha we have atomic.h if we are using gcc */
#if defined(TARGET_OS_LINUX) && defined(__GNUC__) && defined(__alpha__) && (__GNUC__ > 2 || ( __GNUC__ == 2 && __GNUC_MINOR__ >= 95)) && !defined(HAVE_ATOMIC_ADD)
#define HAVE_ATOMIC_ADD
#define HAVE_ATOMIC_SUB
#endif
/* In Linux-ia64 including atomic.h will give us an error */
#if (defined(TARGET_OS_LINUX) && defined(__GNUC__) && (defined(__ia64__)||defined(__powerpc64__))) || !defined(THREAD)
#undef HAVE_ATOMIC_ADD
#undef HAVE_ATOMIC_SUB
#endif
#if defined(_lint) && !defined(lint)
#if defined(_lint) && !defined(lint)
#define lint
#define lint
#endif
#endif
...
...
mysql-test/r/ctype_latin2.result
View file @
81e46539
No preview for this file type
mysql-test/r/information_schema.result
View file @
81e46539
...
@@ -4,9 +4,9 @@ skip_show_database OFF
...
@@ -4,9 +4,9 @@ skip_show_database OFF
grant select, update, execute on test.* to mysqltest_2@localhost;
grant select, update, execute on test.* to mysqltest_2@localhost;
grant select, update on test.* to mysqltest_1@localhost;
grant select, update on test.* to mysqltest_1@localhost;
select * from information_schema.SCHEMATA where schema_name > 'm';
select * from information_schema.SCHEMATA where schema_name > 'm';
CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME SQL_PATH
CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME
DEFAULT_COLLATION_NAME
SQL_PATH
NULL mysql latin1 NULL
NULL mysql latin1
latin1_swedish_ci
NULL
NULL test latin1 NULL
NULL test latin1
latin1_swedish_ci
NULL
select schema_name from information_schema.schemata;
select schema_name from information_schema.schemata;
schema_name
schema_name
information_schema
information_schema
...
...
mysql-test/r/select.result
View file @
81e46539
...
@@ -2455,3 +2455,24 @@ a
...
@@ -2455,3 +2455,24 @@ a
select x.a, y.a, z.a from ( (t1 x inner join t2 y on x.a=y.a) inner join t2 z on y.a=z.a) WHERE x.a=1;
select x.a, y.a, z.a from ( (t1 x inner join t2 y on x.a=y.a) inner join t2 z on y.a=z.a) WHERE x.a=1;
a a a
a a a
drop table t1,t2;
drop table t1,t2;
create table t1 (s1 varchar(5));
insert into t1 values ('Wall');
select min(s1) from t1 group by s1 with rollup;
min(s1)
Wall
Wall
drop table t1;
create table t1 (s1 int) engine=myisam;
insert into t1 values (0);
select avg(distinct s1) from t1 group by s1 with rollup;
avg(distinct s1)
0.0000
0.0000
drop table t1;
create table t1 (s1 int);
insert into t1 values (null),(1);
select distinct avg(s1) as x from t1 group by s1 with rollup;
x
NULL
1.0000
drop table t1;
mysql-test/t/ctype_latin2.test
View file @
81e46539
...
@@ -7,10 +7,6 @@ drop table if exists t1;
...
@@ -7,10 +7,6 @@ drop table if exists t1;
SET
NAMES
latin2
;
SET
NAMES
latin2
;
CREATE
TABLE
t1
(
a
char
(
1
)
character
set
latin2
);
CREATE
TABLE
t1
(
a
char
(
1
)
character
set
latin2
);
INSERT
INTO
t1
VALUES
(
0x00
),(
0x01
),(
0x02
),(
0x03
),(
0x04
),(
0x05
),(
0x06
),(
0x07
);
INSERT
INTO
t1
VALUES
(
0x08
),(
0x09
),(
0x0A
),(
0x0B
),(
0x0C
),(
0x0D
),(
0x0E
),(
0x0F
);
INSERT
INTO
t1
VALUES
(
0x10
),(
0x11
),(
0x12
),(
0x13
),(
0x14
),(
0x15
),(
0x16
),(
0x17
);
INSERT
INTO
t1
VALUES
(
0x18
),(
0x19
),(
0x1A
),(
0x1B
),(
0x1C
),(
0x1D
),(
0x1E
),(
0x1F
);
INSERT
INTO
t1
VALUES
(
0x20
),(
0x21
),(
0x22
),(
0x23
),(
0x24
),(
0x25
),(
0x26
),(
0x27
);
INSERT
INTO
t1
VALUES
(
0x20
),(
0x21
),(
0x22
),(
0x23
),(
0x24
),(
0x25
),(
0x26
),(
0x27
);
INSERT
INTO
t1
VALUES
(
0x28
),(
0x29
),(
0x2A
),(
0x2B
),(
0x2C
),(
0x2D
),(
0x2E
),(
0x2F
);
INSERT
INTO
t1
VALUES
(
0x28
),(
0x29
),(
0x2A
),(
0x2B
),(
0x2C
),(
0x2D
),(
0x2E
),(
0x2F
);
INSERT
INTO
t1
VALUES
(
0x30
),(
0x31
),(
0x32
),(
0x33
),(
0x34
),(
0x35
),(
0x36
),(
0x37
);
INSERT
INTO
t1
VALUES
(
0x30
),(
0x31
),(
0x32
),(
0x33
),(
0x34
),(
0x35
),(
0x36
),(
0x37
);
...
@@ -45,3 +41,10 @@ INSERT INTO t1 VALUES (0xF8),(0xF9),(0xFA),(0xFB),(0xFC),(0xFD),(0xFE),(0xFF);
...
@@ -45,3 +41,10 @@ INSERT INTO t1 VALUES (0xF8),(0xF9),(0xFA),(0xFB),(0xFC),(0xFD),(0xFE),(0xFF);
#
#
SELECT
hex
(
a
)
ha
,
hex
(
lower
(
a
))
hl
,
hex
(
upper
(
a
))
hu
,
SELECT
hex
(
a
)
ha
,
hex
(
lower
(
a
))
hl
,
hex
(
upper
(
a
))
hu
,
a
,
lower
(
a
)
l
,
upper
(
a
)
u
from
t1
order
by
ha
;
a
,
lower
(
a
)
l
,
upper
(
a
)
u
from
t1
order
by
ha
;
#
# Bug#6505 wrong sorting order
#
SELECT
group_concat
(
a
collate
latin2_croatian_ci
order
by
binary
a
)
from
t1
group
by
a
collate
latin2_croatian_ci
;
drop
table
t1
;
mysql-test/t/select.test
View file @
81e46539
...
@@ -2029,3 +2029,30 @@ select t1.a from (t1 inner join t2 on t1.a=t2.a) where t2.a=1;
...
@@ -2029,3 +2029,30 @@ select t1.a from (t1 inner join t2 on t1.a=t2.a) where t2.a=1;
select
t1
.
a
from
((
t1
inner
join
t2
on
t1
.
a
=
t2
.
a
))
where
t2
.
a
=
1
;
select
t1
.
a
from
((
t1
inner
join
t2
on
t1
.
a
=
t2
.
a
))
where
t2
.
a
=
1
;
select
x
.
a
,
y
.
a
,
z
.
a
from
(
(
t1
x
inner
join
t2
y
on
x
.
a
=
y
.
a
)
inner
join
t2
z
on
y
.
a
=
z
.
a
)
WHERE
x
.
a
=
1
;
select
x
.
a
,
y
.
a
,
z
.
a
from
(
(
t1
x
inner
join
t2
y
on
x
.
a
=
y
.
a
)
inner
join
t2
z
on
y
.
a
=
z
.
a
)
WHERE
x
.
a
=
1
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
#
# Bug#9820
#
create
table
t1
(
s1
varchar
(
5
));
insert
into
t1
values
(
'Wall'
);
select
min
(
s1
)
from
t1
group
by
s1
with
rollup
;
drop
table
t1
;
#
# Bug#9799
#
create
table
t1
(
s1
int
)
engine
=
myisam
;
insert
into
t1
values
(
0
);
select
avg
(
distinct
s1
)
from
t1
group
by
s1
with
rollup
;
drop
table
t1
;
#
# Bug#9800
#
create
table
t1
(
s1
int
);
insert
into
t1
values
(
null
),(
1
);
select
distinct
avg
(
s1
)
as
x
from
t1
group
by
s1
with
rollup
;
drop
table
t1
;
sql/item_sum.cc
View file @
81e46539
...
@@ -240,6 +240,8 @@ Item_sum_hybrid::Item_sum_hybrid(THD *thd, Item_sum_hybrid *item)
...
@@ -240,6 +240,8 @@ Item_sum_hybrid::Item_sum_hybrid(THD *thd, Item_sum_hybrid *item)
case
REAL_RESULT
:
case
REAL_RESULT
:
sum
=
item
->
sum
;
sum
=
item
->
sum
;
break
;
break
;
case
STRING_RESULT
:
// This can happen with ROLLUP. Note that the value is already
break
;
// copied at function call.
case
ROW_RESULT
:
case
ROW_RESULT
:
default:
default:
DBUG_ASSERT
(
0
);
DBUG_ASSERT
(
0
);
...
@@ -585,7 +587,10 @@ bool Item_sum_distinct::setup(THD *thd)
...
@@ -585,7 +587,10 @@ bool Item_sum_distinct::setup(THD *thd)
DBUG_ENTER
(
"Item_sum_distinct::setup"
);
DBUG_ENTER
(
"Item_sum_distinct::setup"
);
DBUG_ASSERT
(
tree
==
0
);
/* setup can not be called twice */
/*
Setup can be called twice for ROLLUP items. This is a bug.
Please add DBUG_ASSERT(tree == 0) here when it's fixed.
*/
/*
/*
Virtual table and the tree are created anew on each re-execution of
Virtual table and the tree are created anew on each re-execution of
...
...
sql/share/charsets/Index.xml
View file @
81e46539
...
@@ -367,6 +367,9 @@ To make maintaining easier please:
...
@@ -367,6 +367,9 @@ To make maintaining easier please:
<order>
Slovenian
</order>
<order>
Slovenian
</order>
<order>
Sorbian
</order>
<order>
Sorbian
</order>
</collation>
</collation>
<collation
name=
"cp1250_croatian_ci"
id=
"44"
>
<order>
Croatian
</order>
</collation>
<collation
name=
"cp1250_czech_cs"
id=
"34"
order=
"Czech"
>
<collation
name=
"cp1250_czech_cs"
id=
"34"
order=
"Czech"
>
<flag>
compiled
</flag>
<flag>
compiled
</flag>
</collation>
</collation>
...
...
sql/share/charsets/cp1250.xml
View file @
81e46539
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F
70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F
80 81 82 83 84 85 86 87 88 89 9A 8B 9C 9D 9E 9F
80 81 82 83 84 85 86 87 88 89 9A 8B 9C 9D 9E 9F
90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F
90 91 92 93 94 95 96 97 98 99 9A 9B 9C 9D 9E 9F
A0 A1 A2 B3 A4 B9 A6
DF
A8 A9 BA AB AC AD AE BF
A0 A1 A2 B3 A4 B9 A6
A7
A8 A9 BA AB AC AD AE BF
B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BE BD BE BF
B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BE BD BE BF
E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF
E0 E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF
F0 F1 F2 F3 F4 F5 F6 D7 F8 F9 FA FB FC FD FE DF
F0 F1 F2 F3 F4 F5 F6 D7 F8 F9 FA FB FC FD FE DF
...
@@ -82,7 +82,7 @@
...
@@ -82,7 +82,7 @@
A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF
A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF
B0 B1 B2 A3 B4 B5 B6 B7 B8 A5 AA BB BC BD BC AF
B0 B1 B2 A3 B4 B5 B6 B7 B8 A5 AA BB BC BD BC AF
C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF
C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF
D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE
A7
D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE
DF
C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF
C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF
D0 D1 D2 D3 D4 D5 D6 F7 D8 D9 DA DB DC DD DE FF
D0 D1 D2 D3 D4 D5 D6 F7 D8 D9 DA DB DC DD DE FF
</map>
</map>
...
@@ -132,6 +132,27 @@
...
@@ -132,6 +132,27 @@
</map>
</map>
</collation>
</collation>
<collation
name=
"cp1250_croatian_ci"
>
<map>
00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F
30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F
40 41 43 44 48 4B 4D 4E 4F 50 52 53 54 56 57 59
5B 5C 5D 5F 62 64 66 67 68 69 6B 90 91 92 93 94
95 41 43 44 48 4B 4D 4E 4F 50 52 53 54 56 57 59
5B 5C 5D 5F 62 64 66 67 68 69 6B 96 97 98 99 9A
9B 9C 9E 9F A0 A1 A2 A3 A4 A5 60 A6 5F 62 6C 6B
A7 A8 A9 AA AB AC AD AE AF B0 60 B1 5F 62 6C 6B
B2 B3 B4 54 B5 41 B6 B7 B8 B9 5F BA BB BC BD 6B
BE BF C0 54 C1 C2 C3 C4 C5 41 5F C6 54 C7 54 6B
5D 41 41 41 41 54 47 44 46 4B 4B 4B 4B 50 50 48
4A 57 57 59 59 59 59 C8 5D 64 64 64 64 69 62 5F
5D 41 41 41 41 54 47 44 46 4B 4B 4B 4B 50 50 48
4A 57 57 59 59 59 59 C9 5D 64 64 64 64 69 62 FF
</map>
</collation>
<collation
name=
"cp1250_czech_ci"
/>
<collation
name=
"cp1250_czech_ci"
/>
<collation
name=
"cp1250_bin"
flag=
"binary"
/>
<collation
name=
"cp1250_bin"
flag=
"binary"
/>
...
...
sql/share/charsets/latin2.xml
View file @
81e46539
...
@@ -135,22 +135,22 @@
...
@@ -135,22 +135,22 @@
<collation
name=
"latin2_croatian_ci"
>
<collation
name=
"latin2_croatian_ci"
>
<map>
<map>
00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F
20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F
30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F
30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F
40 41 42 43 46 48 49 4A 4B 4C 4D 4E 4F 50 51 52
40 41 43 44 48 4B 4D 4E 4F 50 52 53 54 56 57 59
53 54 55 56 58 59 5A 5B 5C 5D 5E 5B 5C 5D 5E 5F
5B 5C 5D 5F 62 64 66 67 68 69 6B C6 C7 C8 C9 CA
60 41 42 43 46 48 49 4A 4B 4C 4D 4E 4F 50 51 52
CB 41 43 44 48 4B 4D 4E 4F 50 52 53 54 56 57 59
53 54 55 56 58 59 5A 5B 5C 5D 5E 7B 7C 7D 7E 7F
5B 5C 5D 5F 62 64 66 67 68 69 6B CC CD CE CF D0
80 81 82 83 84 85 86 87 88 89 57 8B 8C 8D 5F 8F
D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF E0
90 91 92 93 94 95 96 97 98 99 57 9B 9C 9D 5F 9F
E1 E2 E3 E4 E5 E6 E7 E8 E9 EA EB EC ED EE EF F0
A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF
F1 41 F2 54 F3 54 5F F4 F5 61 5F 62 6B F6 8E 6B
B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF
F7 41 F8 54 F9 54 5F FA FB 61 5F 62 6B FC 8E 6B
41 41 41 41 5C 5B 45 43 44 45 45 45 49 49 49 49
5D 41 41 41 41 54 47 44 46 4B 4B 4B 4B 50 50 48
47 4E 4F 4F 4F 4F 5D D7 D8 55 55 55 59 59 DE D
F
4A 57 57 59 59 59 59 FD 5D 64 64 64 64 69 62 5
F
41 41 41 41 5C 5B 45 43 44 45 45 45 49 49 49 49
5D 41 41 41 41 54 47 44 46 4B 4B 4B 4B 50 50 48
47 4E 4F 4F 4F 4F 5D F7 D8 55 55 55 59 59 DE
FF
4A 57 57 59 59 59 59 FE 5D 64 64 64 64 69 62
FF
</map>
</map>
</collation>
</collation>
...
...
sql/sql_show.cc
View file @
81e46539
...
@@ -2002,11 +2002,12 @@ int get_all_tables(THD *thd, TABLE_LIST *tables, COND *cond)
...
@@ -2002,11 +2002,12 @@ int get_all_tables(THD *thd, TABLE_LIST *tables, COND *cond)
bool
store_schema_shemata
(
THD
*
thd
,
TABLE
*
table
,
const
char
*
db_name
,
bool
store_schema_shemata
(
THD
*
thd
,
TABLE
*
table
,
const
char
*
db_name
,
const
char
*
cs_name
)
CHARSET_INFO
*
cs
)
{
{
restore_record
(
table
,
s
->
default_values
);
restore_record
(
table
,
s
->
default_values
);
table
->
field
[
1
]
->
store
(
db_name
,
strlen
(
db_name
),
system_charset_info
);
table
->
field
[
1
]
->
store
(
db_name
,
strlen
(
db_name
),
system_charset_info
);
table
->
field
[
2
]
->
store
(
cs_name
,
strlen
(
cs_name
),
system_charset_info
);
table
->
field
[
2
]
->
store
(
cs
->
csname
,
strlen
(
cs
->
csname
),
system_charset_info
);
table
->
field
[
3
]
->
store
(
cs
->
name
,
strlen
(
cs
->
name
),
system_charset_info
);
return
schema_table_store_record
(
thd
,
table
);
return
schema_table_store_record
(
thd
,
table
);
}
}
...
@@ -2037,7 +2038,7 @@ int fill_schema_shemata(THD *thd, TABLE_LIST *tables, COND *cond)
...
@@ -2037,7 +2038,7 @@ int fill_schema_shemata(THD *thd, TABLE_LIST *tables, COND *cond)
if
(
with_i_schema
)
// information schema name is always first in list
if
(
with_i_schema
)
// information schema name is always first in list
{
{
if
(
store_schema_shemata
(
thd
,
table
,
file_name
,
if
(
store_schema_shemata
(
thd
,
table
,
file_name
,
system_charset_info
->
csname
))
system_charset_info
))
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
with_i_schema
=
0
;
with_i_schema
=
0
;
continue
;
continue
;
...
@@ -2062,7 +2063,7 @@ int fill_schema_shemata(THD *thd, TABLE_LIST *tables, COND *cond)
...
@@ -2062,7 +2063,7 @@ int fill_schema_shemata(THD *thd, TABLE_LIST *tables, COND *cond)
strmov
(
path
+
length
,
MY_DB_OPT_FILE
);
strmov
(
path
+
length
,
MY_DB_OPT_FILE
);
load_db_opt
(
thd
,
path
,
&
create
);
load_db_opt
(
thd
,
path
,
&
create
);
if
(
store_schema_shemata
(
thd
,
table
,
file_name
,
if
(
store_schema_shemata
(
thd
,
table
,
file_name
,
create
.
default_table_charset
->
csname
))
create
.
default_table_charset
))
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
}
}
}
}
...
@@ -3484,6 +3485,7 @@ ST_FIELD_INFO schema_fields_info[]=
...
@@ -3484,6 +3485,7 @@ ST_FIELD_INFO schema_fields_info[]=
{
"CATALOG_NAME"
,
FN_REFLEN
,
MYSQL_TYPE_STRING
,
0
,
1
,
0
},
{
"CATALOG_NAME"
,
FN_REFLEN
,
MYSQL_TYPE_STRING
,
0
,
1
,
0
},
{
"SCHEMA_NAME"
,
NAME_LEN
,
MYSQL_TYPE_STRING
,
0
,
0
,
"Database"
},
{
"SCHEMA_NAME"
,
NAME_LEN
,
MYSQL_TYPE_STRING
,
0
,
0
,
"Database"
},
{
"DEFAULT_CHARACTER_SET_NAME"
,
64
,
MYSQL_TYPE_STRING
,
0
,
0
,
0
},
{
"DEFAULT_CHARACTER_SET_NAME"
,
64
,
MYSQL_TYPE_STRING
,
0
,
0
,
0
},
{
"DEFAULT_COLLATION_NAME"
,
64
,
MYSQL_TYPE_STRING
,
0
,
0
,
0
},
{
"SQL_PATH"
,
FN_REFLEN
,
MYSQL_TYPE_STRING
,
0
,
1
,
0
},
{
"SQL_PATH"
,
FN_REFLEN
,
MYSQL_TYPE_STRING
,
0
,
1
,
0
},
{
0
,
0
,
MYSQL_TYPE_STRING
,
0
,
0
,
0
}
{
0
,
0
,
MYSQL_TYPE_STRING
,
0
,
0
,
0
}
};
};
...
...
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