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
ee88c36a
Commit
ee88c36a
authored
Nov 21, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merging
sql/item_func.cc: Auto merged sql/item_func.h: Auto merged
parents
2723dbdb
2da4d135
Changes
36
Hide whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
104 additions
and
8 deletions
+104
-8
include/mysqld_error.h
include/mysqld_error.h
+2
-1
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+10
-2
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+9
-2
sql/item.cc
sql/item.cc
+44
-2
sql/item.h
sql/item.h
+1
-0
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+2
-0
sql/item_func.cc
sql/item_func.cc
+1
-0
sql/item_func.h
sql/item_func.h
+1
-0
sql/item_strfunc.cc
sql/item_strfunc.cc
+2
-0
sql/item_subselect.cc
sql/item_subselect.cc
+1
-0
sql/item_sum.cc
sql/item_sum.cc
+2
-0
sql/item_sum.h
sql/item_sum.h
+1
-0
sql/item_uniq.h
sql/item_uniq.h
+5
-1
sql/share/czech/errmsg.txt
sql/share/czech/errmsg.txt
+1
-0
sql/share/danish/errmsg.txt
sql/share/danish/errmsg.txt
+1
-0
sql/share/dutch/errmsg.txt
sql/share/dutch/errmsg.txt
+1
-0
sql/share/english/errmsg.txt
sql/share/english/errmsg.txt
+1
-0
sql/share/estonian/errmsg.txt
sql/share/estonian/errmsg.txt
+1
-0
sql/share/french/errmsg.txt
sql/share/french/errmsg.txt
+1
-0
sql/share/german/errmsg.txt
sql/share/german/errmsg.txt
+1
-0
sql/share/greek/errmsg.txt
sql/share/greek/errmsg.txt
+1
-0
sql/share/hungarian/errmsg.txt
sql/share/hungarian/errmsg.txt
+1
-0
sql/share/italian/errmsg.txt
sql/share/italian/errmsg.txt
+1
-0
sql/share/japanese/errmsg.txt
sql/share/japanese/errmsg.txt
+1
-0
sql/share/korean/errmsg.txt
sql/share/korean/errmsg.txt
+1
-0
sql/share/norwegian-ny/errmsg.txt
sql/share/norwegian-ny/errmsg.txt
+1
-0
sql/share/norwegian/errmsg.txt
sql/share/norwegian/errmsg.txt
+1
-0
sql/share/polish/errmsg.txt
sql/share/polish/errmsg.txt
+1
-0
sql/share/portuguese/errmsg.txt
sql/share/portuguese/errmsg.txt
+1
-0
sql/share/romanian/errmsg.txt
sql/share/romanian/errmsg.txt
+1
-0
sql/share/russian/errmsg.txt
sql/share/russian/errmsg.txt
+1
-0
sql/share/serbian/errmsg.txt
sql/share/serbian/errmsg.txt
+1
-0
sql/share/slovak/errmsg.txt
sql/share/slovak/errmsg.txt
+1
-0
sql/share/spanish/errmsg.txt
sql/share/spanish/errmsg.txt
+1
-0
sql/share/swedish/errmsg.txt
sql/share/swedish/errmsg.txt
+1
-0
sql/share/ukrainian/errmsg.txt
sql/share/ukrainian/errmsg.txt
+1
-0
No files found.
include/mysqld_error.h
View file @
ee88c36a
...
...
@@ -261,4 +261,5 @@
#define ER_CORRUPT_HELP_DB 1242
#define ER_CYCLIC_REFERENCE 1243
#define ER_AUTO_CONVERT 1244
#define ER_ERROR_MESSAGES 245
#define ER_ILLEGAL_REFERENCE 1246
#define ER_ERROR_MESSAGES 246
mysql-test/r/subselect.result
View file @
ee88c36a
...
...
@@ -9,9 +9,9 @@ SELECT (SELECT (SELECT 0 UNION SELECT 0));
(SELECT (SELECT 0 UNION SELECT 0))
0
SELECT (SELECT 1 FROM (SELECT 1) HAVING a=1) as a;
Cyclic reference on subqueries
Reference 'a' not supported (forward reference in item list)
SELECT (SELECT 1 FROM (SELECT 1) HAVING b=1) as a,(SELECT 1 FROM (SELECT 1) HAVING a=1) as b;
Cyclic reference on subqueries
Reference 'b' not supported (forward reference in item list)
drop table if exists t1,t2,t3,t4,t5,attend,clinic,inscrit;
create table t1 (a int);
create table t2 (a int, b int);
...
...
@@ -20,6 +20,8 @@ create table t4 (a int, b int);
insert into t1 values (2);
insert into t2 values (1,7),(2,7);
insert into t4 values (4,8),(3,8),(5,9);
select (select a from t1 where t1.a = a1) as a2, (select b from t2 where t2.b=a2) as a1;
Reference 'a1' not supported (forward reference in item list)
select (select a from t1 where t1.a=t2.a), a from t2;
(select a from t1 where t1.a=t2.a) a
NULL 1
...
...
@@ -278,6 +280,12 @@ PRIMARY KEY (`numeropost`,`numreponse`),
UNIQUE KEY `numreponse` (`numreponse`),
KEY `pseudo` (`pseudo`,`numeropost`)
) TYPE=MyISAM;
SELECT (SELECT numeropost FROM threadhardwarefr7 HAVING numreponse=a),numreponse FROM (SELECT * FROM threadhardwarefr7) as a;
Reference 'numreponse' not supported (forward reference in item list)
SELECT numreponse, (SELECT numeropost FROM threadhardwarefr7 HAVING numreponse=a) FROM (SELECT * FROM threadhardwarefr7) as a;
Unknown column 'a' in 'having clause'
SELECT numreponse, (SELECT numeropost FROM threadhardwarefr7 HAVING numreponse=1) FROM (SELECT * FROM threadhardwarefr7) as a;
numreponse (SELECT numeropost FROM threadhardwarefr7 HAVING numreponse=1)
INSERT INTO threadhardwarefr7 (numeropost,numreponse,pseudo) VALUES (1,1,'joce'),(1,2,'joce'),(1,3,'test');
EXPLAIN SELECT numreponse FROM threadhardwarefr7 WHERE numeropost='1' AND numreponse=(SELECT 1 FROM threadhardwarefr7 WHERE numeropost='1');
Subselect returns more than 1 record
...
...
mysql-test/t/subselect.test
View file @
ee88c36a
select
(
select
2
);
SELECT
(
SELECT
1
)
UNION
SELECT
(
SELECT
2
);
SELECT
(
SELECT
(
SELECT
0
UNION
SELECT
0
));
--
error
124
3
--
error
124
4
SELECT
(
SELECT
1
FROM
(
SELECT
1
)
HAVING
a
=
1
)
as
a
;
--
error
124
3
--
error
124
4
SELECT
(
SELECT
1
FROM
(
SELECT
1
)
HAVING
b
=
1
)
as
a
,(
SELECT
1
FROM
(
SELECT
1
)
HAVING
a
=
1
)
as
b
;
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
attend
,
clinic
,
inscrit
;
create
table
t1
(
a
int
);
...
...
@@ -13,6 +13,8 @@ create table t4 (a int, b int);
insert
into
t1
values
(
2
);
insert
into
t2
values
(
1
,
7
),(
2
,
7
);
insert
into
t4
values
(
4
,
8
),(
3
,
8
),(
5
,
9
);
--
error
1244
select
(
select
a
from
t1
where
t1
.
a
=
a1
)
as
a2
,
(
select
b
from
t2
where
t2
.
b
=
a2
)
as
a1
;
select
(
select
a
from
t1
where
t1
.
a
=
t2
.
a
),
a
from
t2
;
select
(
select
a
from
t1
where
t1
.
a
=
t2
.
b
),
a
from
t2
;
select
(
select
a
from
t1
),
a
from
t2
;
...
...
@@ -176,6 +178,11 @@ CREATE TABLE `threadhardwarefr7` (
UNIQUE
KEY
`numreponse`
(
`numreponse`
),
KEY
`pseudo`
(
`pseudo`
,
`numeropost`
)
)
TYPE
=
MyISAM
;
--
error
1244
SELECT
(
SELECT
numeropost
FROM
threadhardwarefr7
HAVING
numreponse
=
a
),
numreponse
FROM
(
SELECT
*
FROM
threadhardwarefr7
)
as
a
;
--
error
1054
SELECT
numreponse
,
(
SELECT
numeropost
FROM
threadhardwarefr7
HAVING
numreponse
=
a
)
FROM
(
SELECT
*
FROM
threadhardwarefr7
)
as
a
;
SELECT
numreponse
,
(
SELECT
numeropost
FROM
threadhardwarefr7
HAVING
numreponse
=
1
)
FROM
(
SELECT
*
FROM
threadhardwarefr7
)
as
a
;
INSERT
INTO
threadhardwarefr7
(
numeropost
,
numreponse
,
pseudo
)
VALUES
(
1
,
1
,
'joce'
),(
1
,
2
,
'joce'
),(
1
,
3
,
'test'
);
--
error
1240
EXPLAIN
SELECT
numreponse
FROM
threadhardwarefr7
WHERE
numeropost
=
'1'
AND
numreponse
=
(
SELECT
1
FROM
threadhardwarefr7
WHERE
numeropost
=
'1'
);
...
...
sql/item.cc
View file @
ee88c36a
...
...
@@ -34,7 +34,8 @@ void item_init(void)
item_user_lock_init
();
}
Item
::
Item
()
Item
::
Item
()
:
fixed
(
0
)
{
marker
=
0
;
maybe_null
=
null_value
=
with_sum_func
=
unsigned_flag
=
0
;
...
...
@@ -139,6 +140,7 @@ CHARSET_INFO * Item::thd_charset() const
Item_field
::
Item_field
(
Field
*
f
)
:
Item_ident
(
NullS
,
f
->
table_name
,
f
->
field_name
)
{
set_field
(
f
);
fixed
=
1
;
// This item is not needed in fix_fields
}
...
...
@@ -438,6 +440,7 @@ bool Item::fix_fields(THD *thd,
struct
st_table_list
*
list
,
Item
**
ref
)
{
fixed
=
1
;
return
0
;
}
...
...
@@ -459,23 +462,48 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
*/
SELECT_LEX
*
last
=
0
;
Item
**
refer
=
(
Item
**
)
not_found_item
;
// Prevent using outer fields in subselects, that is not supported now
if
(
thd
->
lex
.
current_select
->
linkage
!=
DERIVED_TABLE_TYPE
)
for
(
SELECT_LEX
*
sl
=
thd
->
lex
.
current_select
->
outer_select
();
sl
;
sl
=
sl
->
outer_select
())
{
if
((
tmp
=
find_field_in_tables
(
thd
,
this
,
(
last
=
sl
)
->
get_table_list
(),
0
))
!=
not_found_field
)
break
;
if
((
refer
=
find_item_in_list
(
this
,
(
last
=
sl
)
->
item_list
,
REPORT_EXCEPT_NOT_FOUND
))
!=
(
Item
**
)
not_found_item
)
break
;
}
if
(
!
tmp
)
return
-
1
;
else
if
(
tmp
==
not_found_field
)
else
if
(
!
refer
)
return
1
;
else
if
(
tmp
==
not_found_field
&&
refer
==
(
Item
**
)
not_found_item
)
{
// call to return error code
find_field_in_tables
(
thd
,
this
,
tables
,
1
);
return
-
1
;
}
else
if
(
refer
!=
(
Item
**
)
not_found_item
)
{
Item_ref
*
r
;
*
ref
=
r
=
new
Item_ref
((
char
*
)
db_name
,
(
char
*
)
table_name
,
(
char
*
)
field_name
);
if
(
!
r
)
return
1
;
int
res
;
if
((
res
=
r
->
fix_fields
(
thd
,
tables
,
ref
)))
return
res
;
r
->
depended_from
=
last
;
thd
->
lex
.
current_select
->
mark_as_dependent
(
last
);
thd
->
add_possible_loop
(
r
);
return
0
;
}
else
{
depended_from
=
last
;
...
...
@@ -507,6 +535,7 @@ bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
return
1
;
return
(
*
ref
)
->
fix_fields
(
thd
,
tables
,
ref
);
}
fixed
=
1
;
return
0
;
}
...
...
@@ -885,6 +914,19 @@ bool Item_ref::fix_fields(THD *thd,TABLE_LIST *tables, Item **reference)
maybe_null
=
(
*
ref
)
->
maybe_null
;
decimals
=
(
*
ref
)
->
decimals
;
}
if
(((
*
ref
)
->
with_sum_func
&&
(
depended_from
||
!
(
thd
->
lex
.
current_select
->
linkage
!=
GLOBAL_OPTIONS_TYPE
&&
thd
->
lex
.
current_select
->
select_lex
()
->
having_fix_field
)))
||
!
(
*
ref
)
->
fixed
)
{
my_error
(
ER_ILLEGAL_REFERENCE
,
MYF
(
0
),
name
,
((
*
ref
)
->
with_sum_func
?
"reference on group function"
:
"forward reference in item list"
));
return
1
;
}
fixed
=
1
;
return
0
;
}
...
...
sql/item.h
View file @
ee88c36a
...
...
@@ -46,6 +46,7 @@ class Item {
my_bool
null_value
;
/* if item is null */
my_bool
unsigned_flag
;
my_bool
with_sum_func
;
my_bool
fixed
;
/* If item fixed with fix_fields */
// alloc & destruct is done as start of select using sql_alloc
Item
();
...
...
sql/item_cmpfunc.cc
View file @
ee88c36a
...
...
@@ -1152,6 +1152,7 @@ Item_cond::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
if
(
thd
)
thd
->
cond_count
+=
list
.
elements
;
fix_length_and_dec
();
fixed
=
1
;
return
0
;
}
...
...
@@ -1425,6 +1426,7 @@ Item_func_regex::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
}
else
maybe_null
=
1
;
fixed
=
1
;
return
0
;
}
...
...
sql/item_func.cc
View file @
ee88c36a
...
...
@@ -123,6 +123,7 @@ Item_func::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
}
}
fix_length_and_dec
();
fixed
=
1
;
return
0
;
}
...
...
sql/item_func.h
View file @
ee88c36a
...
...
@@ -754,6 +754,7 @@ class Item_udf_func :public Item_func
bool
res
=
udf
.
fix_fields
(
thd
,
tables
,
this
,
arg_count
,
args
);
used_tables_cache
=
udf
.
used_tables_cache
;
const_item_cache
=
udf
.
const_item_cache
;
fixed
=
1
;
return
res
;
}
Item_result
result_type
()
const
{
return
udf
.
result_type
();
}
...
...
sql/item_strfunc.cc
View file @
ee88c36a
...
...
@@ -2065,6 +2065,7 @@ bool Item_func_conv_charset::fix_fields(THD *thd,struct st_table_list *tables, I
const_item_cache
=
args
[
0
]
->
const_item
();
set_charset
(
conv_charset
);
fix_length_and_dec
();
fixed
=
1
;
return
0
;
}
...
...
@@ -2099,6 +2100,7 @@ bool Item_func_set_collation::fix_fields(THD *thd,struct st_table_list *tables,
used_tables_cache
=
args
[
0
]
->
used_tables
();
const_item_cache
=
args
[
0
]
->
const_item
();
fix_length_and_dec
();
fixed
=
1
;
return
0
;
}
...
...
sql/item_subselect.cc
View file @
ee88c36a
...
...
@@ -92,6 +92,7 @@ bool Item_subselect::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
}
fix_length_and_dec
();
}
fixed
=
1
;
return
res
;
}
...
...
sql/item_sum.cc
View file @
ee88c36a
...
...
@@ -135,6 +135,7 @@ Item_sum_num::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
null_value
=
1
;
fix_length_and_dec
();
thd
->
allow_sum_func
=
1
;
// Allow group functions
fixed
=
1
;
return
0
;
}
...
...
@@ -165,6 +166,7 @@ Item_sum_hybrid::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
null_value
=
1
;
fix_length_and_dec
();
thd
->
allow_sum_func
=
1
;
// Allow group functions
fixed
=
1
;
return
0
;
}
...
...
sql/item_sum.h
View file @
ee88c36a
...
...
@@ -384,6 +384,7 @@ class Item_udf_sum : public Item_sum
const
char
*
func_name
()
const
{
return
udf
.
name
();
}
bool
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tables
,
Item
**
ref
)
{
fixed
=
1
;
return
udf
.
fix_fields
(
thd
,
tables
,
this
,
this
->
arg_count
,
this
->
args
);
}
enum
Sumfunctype
sum_func
()
const
{
return
UDF_SUM_FUNC
;
}
...
...
sql/item_uniq.h
View file @
ee88c36a
...
...
@@ -43,5 +43,9 @@ class Item_sum_unique_users :public Item_sum_num
bool
add
()
{
return
0
;
}
void
reset_field
()
{}
void
update_field
(
int
offset
)
{}
bool
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tlist
,
Item
**
ref
)
{
return
0
;}
bool
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tlist
,
Item
**
ref
)
{
fixed
=
1
;
return
0
;
}
};
sql/share/czech/errmsg.txt
View file @
ee88c36a
...
...
@@ -255,3 +255,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/danish/errmsg.txt
View file @
ee88c36a
...
...
@@ -249,3 +249,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/dutch/errmsg.txt
View file @
ee88c36a
...
...
@@ -257,3 +257,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/english/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/estonian/errmsg.txt
View file @
ee88c36a
...
...
@@ -251,3 +251,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/french/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/german/errmsg.txt
View file @
ee88c36a
...
...
@@ -249,3 +249,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/greek/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/hungarian/errmsg.txt
View file @
ee88c36a
...
...
@@ -248,3 +248,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/italian/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/japanese/errmsg.txt
View file @
ee88c36a
...
...
@@ -248,3 +248,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/korean/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/norwegian-ny/errmsg.txt
View file @
ee88c36a
...
...
@@ -248,3 +248,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/norwegian/errmsg.txt
View file @
ee88c36a
...
...
@@ -248,3 +248,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/polish/errmsg.txt
View file @
ee88c36a
...
...
@@ -250,3 +250,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/portuguese/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/romanian/errmsg.txt
View file @
ee88c36a
...
...
@@ -250,3 +250,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/russian/errmsg.txt
View file @
ee88c36a
...
...
@@ -249,3 +249,4 @@
"Help database is corrupt or does not exist",
" ",
"Converting column '%s' from %s to %s"
" '%-.64s' (%s)",
sql/share/serbian/errmsg.txt
View file @
ee88c36a
...
...
@@ -242,3 +242,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/slovak/errmsg.txt
View file @
ee88c36a
...
...
@@ -254,3 +254,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/spanish/errmsg.txt
View file @
ee88c36a
...
...
@@ -247,3 +247,4 @@
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
"Converting column '%s' from %s to %s"
"Reference '%-.64s' not supported (%s)",
sql/share/swedish/errmsg.txt
View file @
ee88c36a
...
...
@@ -246,3 +246,4 @@
"Hjälp databasen finns inte eller är skadad",
"Syklisk referens i subselect",
"Konvertar kolumn '%s' från %s till %s"
"Reference '%-.64s' not supported (%s)",
sql/share/ukrainian/errmsg.txt
View file @
ee88c36a
...
...
@@ -251,3 +251,4 @@
"Help database is corrupt or does not exist",
"i i",
"Converting column '%s' from %s to %s"
" '%-.64s' i (%s)",
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