Skip to content

Commit 2ca9d9c

Browse files
author
Michael Fero
committed
Merge remote-tracking branch 'core/master' into 1.8.0_prep
2 parents e074db5 + 4a4b3a6 commit 2ca9d9c

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

cpp-driver/build.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ package:
4343
include: # list of files and glob paths to include in the artifact, relative to the current working directory
4444
- packaging/packages/*
4545
release:
46+
matrix:
47+
exclude:
48+
- os: [ osx/high-sierra ]
4649
after:
4750
each:
4851
- script: |

cpp-driver/examples/udt/udt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,6 @@ int main(int argc, char* argv[]) {
248248
return -1;
249249
}
250250

251-
schema_meta = cass_session_get_schema_meta(session);
252-
253251
execute_query(session,
254252
"CREATE KEYSPACE examples WITH replication = { \
255253
'class': 'SimpleStrategy', 'replication_factor': '3' }");
@@ -263,6 +261,8 @@ int main(int argc, char* argv[]) {
263261
execute_query(session,
264262
"CREATE TABLE examples.udt (id timeuuid, address frozen<address>, PRIMARY KEY(id))");
265263

264+
schema_meta = cass_session_get_schema_meta(session);
265+
266266
insert_into_udt(session);
267267
select_from_udt(session);
268268

cpp-driver/src/control_connector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ void ControlConnector::handle_query_schema(SchemaConnectorRequestCallback* callb
329329
schema_.views = callback->result("views");
330330
schema_.columns = callback->result("columns");
331331
schema_.indexes = callback->result("indexes");
332-
schema_.user_types = callback->result("types");
332+
schema_.user_types = callback->result("user_types");
333333
schema_.functions = callback->result("functions");
334334
schema_.aggregates = callback->result("aggregates");
335335
schema_.virtual_keyspaces = callback->result("virtual_keyspaces");

0 commit comments

Comments
 (0)