Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Float merge #40

Closed
wants to merge 99 commits into from
Closed

Float merge #40

wants to merge 99 commits into from

Conversation

bmunkholm
Copy link
Contributor

Merged floats and master.

rrrlasse and others added 30 commits October 1, 2012 17:00
…ryspeed

Conflicts:
	README.md
	build.sh
	changelog.txt
	config.mk
	doc/ref_cpp/data/dyn_query_ref.yaml
	doc/ref_cpp/data/dyn_table_ref.yaml
	doc/ref_cpp/data/dyn_view_ref.yaml
	doc/ref_cpp/data/group_ref.yaml
	doc/ref_cpp/data/mixed_ref.yaml
	doc/ref_cpp/data/reference.yaml
	doc/ref_cpp/data/shared_group_ref.yaml
	doc/ref_cpp/data/typed_table_ref.yaml
	generic.mk
	src/tightdb/Makefile
	src/tightdb/alloc_slab.cpp
	src/tightdb/array.cpp
	src/tightdb/array.hpp
	src/tightdb/binary_data.hpp
	src/tightdb/column.cpp
	src/tightdb/query.cpp
	src/tightdb/query.hpp
	src/tightdb/query_engine.hpp
	src/tightdb/table.cpp
	src/tightdb/table.hpp
	src/tightdb/utilities.cpp
	src/tightdb/utilities.hpp
	test/.gitignore
	test/TestQuery.cpp
	test/main.cpp
	test/testshared.cpp
…_float

Conflicts:
	TightDB.vcxproj
	TightDB.vcxproj.filters
…n() methods (except for IsIntColumn()).

Further templated Column::aggregate()
rrrlasse and others added 9 commits January 25, 2013 16:31
Added testcases to ArrayBasic.
Conflicts:
	TightDB.vcxproj
	TightDB.vcxproj.filters
	changelog.txt
	src/tightdb/alloc_slab.cpp
	src/tightdb/alloc_slab.hpp
	src/tightdb/array.cpp
	src/tightdb/array.hpp
	src/tightdb/column.cpp
	src/tightdb/column.hpp
	src/tightdb/column_mixed.cpp
	src/tightdb/column_mixed.hpp
	src/tightdb/column_string.hpp
	src/tightdb/column_tpl.hpp
	src/tightdb/mixed.hpp
	src/tightdb/table.cpp
	src/tightdb/table.hpp
	src/tightdb/table_accessors.hpp
	src/tightdb/table_view.cpp
	src/tightdb/table_view.hpp
	src/tightdb/utilities.hpp
	test/TestQuery.cpp
	test/main.cpp
	test/testtable.cpp
	test/transactions.cpp
@@ -1,4 +1,5 @@
#include <tightdb/index_string.hpp>
#include <stdio.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use <cstdio>

Brian Munkholm added 3 commits January 30, 2013 09:02
Renamed classes ArrayBasic->BasicArray, ColumnBasic->BasicColumn
…ee GitHub comments.

Moved definitions of ArrayFloat and ArrayDouble to Array.hpp.
Removed column_float.hpp and column_double.hpp. Now defined in column_fwd.hpp.
Created column_mixed_tpl.hpp and moved many methods to this file to allow inline of simple methods.
@ghost ghost assigned kspangsege Jan 30, 2013
ParentNode* p = this;
size_t i = v.size();
v.push_back(this);
p = p->child_criteria();

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider changing signature to
void gather_children(std::vector<ParentNode*>& v)
Note the '&'.

@@ -318,6 +318,15 @@

Query& tableview(const Array& arr) { m_impl.tableview(arr); return *this; }

// Query& Query::tableview(const TableView& tv)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these comments needed?

@@ -35,7 +35,7 @@ void ExecuteTest(T& testObject, TestDetails const& details)
stream << "Unhandled exception: " << e.what();
CurrentTest::Results()->OnTestFailure(details, stream.GetText());
}
catch (...)
catch (...)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants