From f7c425fdd9bc5ea55fafd4212b8b267fd80fbefc Mon Sep 17 00:00:00 2001 From: Tomasz Grabiec Date: Tue, 10 Mar 2015 11:19:09 +0100 Subject: [PATCH] cql3: Introduce column_identifier::name() --- cql3/column_identifier.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cql3/column_identifier.hh b/cql3/column_identifier.hh index 3437ca2b6e..632043033a 100644 --- a/cql3/column_identifier.hh +++ b/cql3/column_identifier.hh @@ -94,6 +94,10 @@ public: return _text; } + const bytes& name() const { + return bytes_; + } + sstring to_string() const { return _text; }