diff options
author | Monty <monty@mariadb.org> | 2017-04-19 22:10:36 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2017-04-19 22:30:55 +0300 |
commit | e6c11717bf2a812a1bb9386102a5db9634b077a9 (patch) | |
tree | 3cc756d3e27039199cdd2b7e908ddb2910e64e98 /storage/cassandra | |
parent | 847eb24b17c2f65008b3d2c2cc031088ee5cca8e (diff) | |
download | mariadb-git-e6c11717bf2a812a1bb9386102a5db9634b077a9.tar.gz |
Fixed wrong prototype in ha_cassandra.cc that broke linking
Diffstat (limited to 'storage/cassandra')
-rw-r--r-- | storage/cassandra/ha_cassandra.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/cassandra/ha_cassandra.cc b/storage/cassandra/ha_cassandra.cc index f0ad2e39081..f95922088ff 100644 --- a/storage/cassandra/ha_cassandra.cc +++ b/storage/cassandra/ha_cassandra.cc @@ -2171,7 +2171,7 @@ int ha_cassandra::info(uint flag) } -void key_copy(uchar *to_key, uchar *from_record, KEY *key_info, +void key_copy(uchar *to_key, const uchar *from_record, KEY *key_info, uint key_length, bool with_zerofill); |