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
f5154229
Commit
f5154229
authored
Oct 18, 2015
by
Olivier Bertrand
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ob-10.0' into 10.0
parents
80d12374
90209463
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
storage/connect/ha_connect.cc
storage/connect/ha_connect.cc
+13
-2
No files found.
storage/connect/ha_connect.cc
View file @
f5154229
...
@@ -169,7 +169,7 @@
...
@@ -169,7 +169,7 @@
#define JSONMAX 10 // JSON Default max grp size
#define JSONMAX 10 // JSON Default max grp size
extern
"C"
{
extern
"C"
{
char
version
[]
=
"Version 1.03.0007
July 05
, 2015"
;
char
version
[]
=
"Version 1.03.0007
October 18
, 2015"
;
#if defined(__WIN__)
#if defined(__WIN__)
char
compver
[]
=
"Version 1.03.0007 "
__DATE__
" "
__TIME__
;
char
compver
[]
=
"Version 1.03.0007 "
__DATE__
" "
__TIME__
;
char
slash
=
'\\'
;
char
slash
=
'\\'
;
...
@@ -2471,6 +2471,17 @@ PFIL ha_connect::CondFilter(PGLOBAL g, Item *cond)
...
@@ -2471,6 +2471,17 @@ PFIL ha_connect::CondFilter(PGLOBAL g, Item *cond)
!
(
colp
[
i
]
=
tdbp
->
ColDB
(
g
,
(
PSZ
)
pField
->
field
->
field_name
,
0
)))
!
(
colp
[
i
]
=
tdbp
->
ColDB
(
g
,
(
PSZ
)
pField
->
field
->
field_name
,
0
)))
return
NULL
;
// Column does not belong to this table
return
NULL
;
// Column does not belong to this table
// These types are not yet implemented (buggy)
switch
(
pField
->
field
->
type
())
{
case
MYSQL_TYPE_TIMESTAMP
:
case
MYSQL_TYPE_DATE
:
case
MYSQL_TYPE_TIME
:
case
MYSQL_TYPE_DATETIME
:
case
MYSQL_TYPE_YEAR
:
case
MYSQL_TYPE_NEWDATE
:
return
NULL
;
}
// endswitch type
if
(
trace
)
{
if
(
trace
)
{
htrc
(
"Field index=%d
\n
"
,
pField
->
field
->
field_index
);
htrc
(
"Field index=%d
\n
"
,
pField
->
field
->
field_index
);
htrc
(
"Field name=%s
\n
"
,
pField
->
field
->
field_name
);
htrc
(
"Field name=%s
\n
"
,
pField
->
field
->
field_name
);
...
...
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