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
48429203
Commit
48429203
authored
Feb 24, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pnousiainen@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb
into mysql.com:/space/pekka/ndb/version/my50-ndb
parents
3341bb3a
161a4349
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
13 deletions
+40
-13
mysql-test/r/ndb_condition_pushdown.result
mysql-test/r/ndb_condition_pushdown.result
+6
-2
mysql-test/t/ndb_condition_pushdown.test
mysql-test/t/ndb_condition_pushdown.test
+6
-2
ndb/src/ndbapi/NdbDictionaryImpl.hpp
ndb/src/ndbapi/NdbDictionaryImpl.hpp
+13
-0
ndb/src/ndbapi/NdbOperationInt.cpp
ndb/src/ndbapi/NdbOperationInt.cpp
+13
-7
ndb/src/ndbapi/NdbScanFilter.cpp
ndb/src/ndbapi/NdbScanFilter.cpp
+2
-2
No files found.
mysql-test/r/ndb_condition_pushdown.result
View file @
48429203
...
...
@@ -235,13 +235,17 @@ auto
4
select auto from t1 where
string like "b%" and
vstring like "b%"
vstring like "b%" and
bin like concat(0xBB, '%') and
vbin like concat(0xBB, '%')
order by auto;
auto
2
select auto from t1 where
string not like "b%" and
vstring not like "b%"
vstring not like "b%" and
bin not like concat(0xBB, '%') and
vbin not like concat(0xBB, '%')
order by auto;
auto
1
...
...
mysql-test/t/ndb_condition_pushdown.test
View file @
48429203
...
...
@@ -236,12 +236,16 @@ order by auto;
# Test LIKE/NOT LIKE
select
auto
from
t1
where
string
like
"b%"
and
vstring
like
"b%"
vstring
like
"b%"
and
bin
like
concat
(
0xBB
,
'%'
)
and
vbin
like
concat
(
0xBB
,
'%'
)
order
by
auto
;
select
auto
from
t1
where
string
not
like
"b%"
and
vstring
not
like
"b%"
vstring
not
like
"b%"
and
bin
not
like
concat
(
0xBB
,
'%'
)
and
vbin
not
like
concat
(
0xBB
,
'%'
)
order
by
auto
;
# Various tests
...
...
ndb/src/ndbapi/NdbDictionaryImpl.hpp
View file @
48429203
...
...
@@ -76,8 +76,10 @@ public:
Uint32
m_attrSize
;
// element size (size when arraySize==1)
Uint32
m_arraySize
;
// length or length+2 for Var* types
Uint32
m_keyInfoPos
;
// TODO: use bits in attr desc 2
bool
getInterpretableType
()
const
;
bool
getCharType
()
const
;
bool
getStringType
()
const
;
bool
getBlobType
()
const
;
/**
...
...
@@ -468,6 +470,17 @@ NdbColumnImpl::getCharType() const {
m_type
==
NdbDictionary
::
Column
::
Text
||
m_type
==
NdbDictionary
::
Column
::
Longvarchar
);
}
inline
bool
NdbColumnImpl
::
getStringType
()
const
{
return
(
m_type
==
NdbDictionary
::
Column
::
Char
||
m_type
==
NdbDictionary
::
Column
::
Varchar
||
m_type
==
NdbDictionary
::
Column
::
Longvarchar
||
m_type
==
NdbDictionary
::
Column
::
Binary
||
m_type
==
NdbDictionary
::
Column
::
Varbinary
||
m_type
==
NdbDictionary
::
Column
::
Longvarbinary
);
}
inline
bool
...
...
ndb/src/ndbapi/NdbOperationInt.cpp
View file @
48429203
...
...
@@ -1014,8 +1014,14 @@ NdbOperation::branch_col(Uint32 type,
Uint32
ColId
,
const
void
*
val
,
Uint32
len
,
bool
nopad
,
Uint32
Label
){
DBUG_ENTER
(
"NdbOperation::branch_col"
);
DBUG_PRINT
(
"enter"
,
(
"type=%u col=%u val=0x%x len=%u label=%u"
,
type
,
ColId
,
val
,
len
,
Label
));
if
(
val
!=
NULL
)
DBUG_DUMP
(
"value"
,
(
char
*
)
val
,
len
);
if
(
initial_interpreterCheck
()
==
-
1
)
return
-
1
;
DBUG_RETURN
(
-
1
)
;
Interpreter
::
BinaryCondition
c
=
(
Interpreter
::
BinaryCondition
)
type
;
...
...
@@ -1029,26 +1035,26 @@ NdbOperation::branch_col(Uint32 type,
if
(
val
==
NULL
)
len
=
0
;
else
{
if
(
!
col
->
get
Char
Type
())
{
if
(
!
col
->
get
String
Type
())
{
// prevent assert in NdbSqlUtil on length error
Uint32
sizeInBytes
=
col
->
m_attrSize
*
col
->
m_arraySize
;
if
(
len
!=
0
&&
len
!=
sizeInBytes
)
{
setErrorCodeAbort
(
4209
);
return
-
1
;
DBUG_RETURN
(
-
1
)
;
}
len
=
sizeInBytes
;
}
}
if
(
insertATTRINFO
(
Interpreter
::
BranchCol
(
c
,
0
,
0
,
false
))
==
-
1
)
return
-
1
;
DBUG_RETURN
(
-
1
)
;
if
(
insertBranch
(
Label
)
==
-
1
)
return
-
1
;
DBUG_RETURN
(
-
1
)
;
if
(
insertATTRINFO
(
Interpreter
::
BranchCol_2
(
ColId
,
len
)))
return
-
1
;
DBUG_RETURN
(
-
1
)
;
Uint32
len2
=
Interpreter
::
mod4
(
len
);
if
(
len2
==
len
){
...
...
@@ -1065,7 +1071,7 @@ NdbOperation::branch_col(Uint32 type,
}
theErrorLine
++
;
return
0
;
DBUG_RETURN
(
0
)
;
}
int
...
...
ndb/src/ndbapi/NdbScanFilter.cpp
View file @
48429203
...
...
@@ -405,8 +405,8 @@ NdbScanFilterImpl::cond_col_const(Interpreter::BinaryCondition op,
return
-
1
;
}
(
m_operation
->*
branch
)(
AttrId
,
value
,
len
,
false
,
m_current
.
m_ownLabel
);
return
0
;
int
ret
=
(
m_operation
->*
branch
)(
AttrId
,
value
,
len
,
false
,
m_current
.
m_ownLabel
);
return
ret
;
}
int
...
...
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