Hazelcast C++ Client
Hazelcast C++ Client Library
Loading...
Searching...
No Matches
hazelcast::client::sql::sql_column_metadata Struct Reference

Public Attributes

std::string name
sql_column_type type
bool nullable

Friends

bool HAZELCAST_API operator== (const sql_column_metadata &lhs, const sql_column_metadata &rhs)

Detailed Description

Definition at line 27 of file sql_column_metadata.h.

◆ operator==

bool HAZELCAST_API operator== ( const sql_column_metadata & lhs,
const sql_column_metadata & rhs )
friend

Definition at line 1317 of file sql.cpp.

1318{
1319 return lhs.name == rhs.name && lhs.type == rhs.type &&
1320 lhs.nullable == rhs.nullable;
1321}

Member Data Documentation

◆ name

std::string hazelcast::client::sql::sql_column_metadata::name

Definition at line 29 of file sql_column_metadata.h.

◆ nullable

bool hazelcast::client::sql::sql_column_metadata::nullable

Definition at line 31 of file sql_column_metadata.h.

◆ type

sql_column_type hazelcast::client::sql::sql_column_metadata::type

Definition at line 30 of file sql_column_metadata.h.


The documentation for this struct was generated from the following file: