Skip to content

Event names/types inconsistencies in c++ code #98

Description

@mrayva

std::string event_name[] not consistent with enum event_type - "insert"/"delete" are mixed up?

std::string event_name[] = {
std::string("insert"),
std::string("delete"),
std::string("batch_update"),
std::string("system_ready")
};

vs

enum event_type {
delete_tuple = 0,
insert_tuple,
batch_update,
system_ready_event
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions