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
38bc66fb
Commit
38bc66fb
authored
Aug 19, 2012
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
position() and rnd_pos() implementations.
parent
62c1c3f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
41 deletions
+64
-41
storage/cassandra/ha_cassandra.cc
storage/cassandra/ha_cassandra.cc
+64
-41
No files found.
storage/cassandra/ha_cassandra.cc
View file @
38bc66fb
...
@@ -254,6 +254,8 @@ int ha_cassandra::open(const char *name, int mode, uint test_if_locked)
...
@@ -254,6 +254,8 @@ int ha_cassandra::open(const char *name, int mode, uint test_if_locked)
DBUG_RETURN
(
HA_ERR_NO_CONNECTION
);
DBUG_RETURN
(
HA_ERR_NO_CONNECTION
);
}
}
info
(
HA_STATUS_NO_LOCK
|
HA_STATUS_VARIABLE
|
HA_STATUS_CONST
);
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
...
@@ -310,6 +312,12 @@ int ha_cassandra::create(const char *name, TABLE *table_arg,
...
@@ -310,6 +312,12 @@ int ha_cassandra::create(const char *name, TABLE *table_arg,
DBUG_RETURN
(
HA_WRONG_CREATE_OPTION
);
DBUG_RETURN
(
HA_WRONG_CREATE_OPTION
);
}
}
if
(
!
((
*
pfield
)
->
flags
&
NOT_NULL_FLAG
))
{
my_error
(
ER_WRONG_COLUMN_NAME
,
MYF
(
0
),
"First column must be NOT NULL"
);
DBUG_RETURN
(
HA_WRONG_CREATE_OPTION
);
}
if
(
table_arg
->
s
->
keys
!=
1
||
table_arg
->
s
->
primary_key
!=
0
||
if
(
table_arg
->
s
->
keys
!=
1
||
table_arg
->
s
->
primary_key
!=
0
||
table_arg
->
key_info
[
0
].
key_parts
!=
1
||
table_arg
->
key_info
[
0
].
key_parts
!=
1
||
table_arg
->
key_info
[
0
].
key_part
[
0
].
fieldnr
!=
1
)
table_arg
->
key_info
[
0
].
key_part
[
0
].
fieldnr
!=
1
)
...
@@ -633,13 +641,6 @@ int ha_cassandra::index_read_map(uchar *buf, const uchar *key,
...
@@ -633,13 +641,6 @@ int ha_cassandra::index_read_map(uchar *buf, const uchar *key,
uint
key_len
=
calculate_key_len
(
table
,
active_index
,
key
,
keypart_map
);
uint
key_len
=
calculate_key_len
(
table
,
active_index
,
key
,
keypart_map
);
store_key_image_to_rec
(
table
->
field
[
0
],
(
uchar
*
)
key
,
key_len
);
store_key_image_to_rec
(
table
->
field
[
0
],
(
uchar
*
)
key
,
key_len
);
#if 0
char buff[256];
String tmp(buff,sizeof(buff), &my_charset_bin);
tmp.length(0);
String *str;
str= table->field[0]->val_str(&tmp);
#endif
char
*
cass_key
;
char
*
cass_key
;
int
cass_key_len
;
int
cass_key_len
;
...
@@ -717,23 +718,11 @@ void ha_cassandra::read_cassandra_columns(bool unpack_pk)
...
@@ -717,23 +718,11 @@ void ha_cassandra::read_cassandra_columns(bool unpack_pk)
int
ha_cassandra
::
write_row
(
uchar
*
buf
)
int
ha_cassandra
::
write_row
(
uchar
*
buf
)
{
{
my_bitmap_map
*
old_map
;
my_bitmap_map
*
old_map
;
// char buff[512];
DBUG_ENTER
(
"ha_cassandra::write_row"
);
DBUG_ENTER
(
"ha_cassandra::write_row"
);
old_map
=
dbug_tmp_use_all_columns
(
table
,
table
->
read_set
);
old_map
=
dbug_tmp_use_all_columns
(
table
,
table
->
read_set
);
/* Convert the key (todo: unify with the rest of the processing) */
/* Convert the key */
#if 0
{
Field *pk_col= table->field[0];
String tmp(buff,sizeof(buff), &my_charset_bin);
String *str;
tmp.length(0);
str= pk_col->val_str(&tmp);
se->start_prepare_insert(str->ptr(), str->length());
}
#endif
char
*
cass_key
;
char
*
cass_key
;
int
cass_key_len
;
int
cass_key_len
;
rowkey_converter
->
mariadb_to_cassandra
(
&
cass_key
,
&
cass_key_len
);
rowkey_converter
->
mariadb_to_cassandra
(
&
cass_key
,
&
cass_key_len
);
...
@@ -836,6 +825,57 @@ int ha_cassandra::delete_row(const uchar *buf)
...
@@ -836,6 +825,57 @@ int ha_cassandra::delete_row(const uchar *buf)
}
}
int
ha_cassandra
::
info
(
uint
flag
)
{
DBUG_ENTER
(
"ha_cassandra::info"
);
if
(
!
table
)
return
1
;
if
(
flag
&
HA_STATUS_VARIABLE
)
{
stats
.
records
=
1000
;
//TODO: any other stats?
}
if
(
flag
&
HA_STATUS_CONST
)
{
ref_length
=
table
->
field
[
0
]
->
key_length
();
}
DBUG_RETURN
(
0
);
}
void
key_copy
(
uchar
*
to_key
,
uchar
*
from_record
,
KEY
*
key_info
,
uint
key_length
,
bool
with_zerofill
);
void
ha_cassandra
::
position
(
const
uchar
*
record
)
{
DBUG_ENTER
(
"ha_cassandra::position"
);
/* Copy the primary key to rowid */
key_copy
(
ref
,
(
uchar
*
)
record
,
&
table
->
key_info
[
0
],
table
->
field
[
0
]
->
key_length
(),
true
);
DBUG_VOID_RETURN
;
}
int
ha_cassandra
::
rnd_pos
(
uchar
*
buf
,
uchar
*
pos
)
{
int
rc
;
DBUG_ENTER
(
"ha_cassandra::rnd_pos"
);
int
save_active_index
=
active_index
;
rc
=
index_read_map
(
buf
,
pos
,
key_part_map
(
1
),
HA_READ_KEY_EXACT
);
active_index
=
save_active_index
;
DBUG_RETURN
(
rc
);
}
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Dummy implementations start
// Dummy implementations start
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
...
@@ -875,19 +915,6 @@ int ha_cassandra::index_last(uchar *buf)
...
@@ -875,19 +915,6 @@ int ha_cassandra::index_last(uchar *buf)
DBUG_RETURN
(
rc
);
DBUG_RETURN
(
rc
);
}
}
void
ha_cassandra
::
position
(
const
uchar
*
record
)
{
DBUG_ENTER
(
"ha_cassandra::position"
);
DBUG_VOID_RETURN
;
}
int
ha_cassandra
::
rnd_pos
(
uchar
*
buf
,
uchar
*
pos
)
{
int
rc
;
DBUG_ENTER
(
"ha_cassandra::rnd_pos"
);
rc
=
HA_ERR_WRONG_COMMAND
;
DBUG_RETURN
(
rc
);
}
ha_rows
ha_cassandra
::
records_in_range
(
uint
inx
,
key_range
*
min_key
,
ha_rows
ha_cassandra
::
records_in_range
(
uint
inx
,
key_range
*
min_key
,
key_range
*
max_key
)
key_range
*
max_key
)
...
@@ -906,13 +933,6 @@ int ha_cassandra::update_row(const uchar *old_data, uchar *new_data)
...
@@ -906,13 +933,6 @@ int ha_cassandra::update_row(const uchar *old_data, uchar *new_data)
}
}
int
ha_cassandra
::
info
(
uint
flag
)
{
DBUG_ENTER
(
"ha_cassandra::info"
);
DBUG_RETURN
(
0
);
}
int
ha_cassandra
::
extra
(
enum
ha_extra_function
operation
)
int
ha_cassandra
::
extra
(
enum
ha_extra_function
operation
)
{
{
DBUG_ENTER
(
"ha_cassandra::extra"
);
DBUG_ENTER
(
"ha_cassandra::extra"
);
...
@@ -940,7 +960,10 @@ int ha_cassandra::external_lock(THD *thd, int lock_type)
...
@@ -940,7 +960,10 @@ int ha_cassandra::external_lock(THD *thd, int lock_type)
int
ha_cassandra
::
delete_table
(
const
char
*
name
)
int
ha_cassandra
::
delete_table
(
const
char
*
name
)
{
{
DBUG_ENTER
(
"ha_cassandra::delete_table"
);
DBUG_ENTER
(
"ha_cassandra::delete_table"
);
/* This is not implemented but we want someone to be able that it works. */
/*
Cassandra table is just a view. Dropping it doesn't affect the underlying
column family.
*/
DBUG_RETURN
(
0
);
DBUG_RETURN
(
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