Skip to content

Commit

Permalink
Merge pull request #88 from denizzzka/geometry_refactoring
Browse files Browse the repository at this point in the history
Geometry refactoring
  • Loading branch information
denizzzka authored Mar 3, 2018
2 parents a35ce83 + 20db10a commit df8607e
Show file tree
Hide file tree
Showing 8 changed files with 233 additions and 159 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ before_script:

script:
- dub run dpq2:integration_tests --build=unittest -- --conninfo="${CONN_STRING}"
- dub run dpq2:integration_tests --build=release -- --conninfo="${CONN_STRING}"

matrix:
include:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Features
* Some data and time types
* JSON type (stored into vibe.data.json.Json)
* JSONB type (ditto)
* Geometric types
* Conversion of values to BSON (into vibe.data.bson.Bson)
* Access to PostgreSQL's multidimensional arrays
* LISTEN/NOTIFY support
Expand Down
3 changes: 2 additions & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"targetType": "executable",
"dependencies":
{
"dpq2": "*"
"dpq2": "*",
"gfm:math": "~>7.0.0"
},
"sourcePath": "integration_tests",
"versions": ["integration_tests"]
Expand Down
2 changes: 1 addition & 1 deletion src/dpq2/conv/from_d_types.d
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module dpq2.conv.from_d_types;

@safe:

public import dpq2.conv.geometric : toValue;
import dpq2.conv.geometric : toValue;
import dpq2.conv.time : POSTGRES_EPOCH_DATE, TimeStamp, TimeStampUTC;
import dpq2.oids : detectOidTypeFromNative, OidType;
import dpq2.value : Value, ValueFormat;
Expand Down
Loading

0 comments on commit df8607e

Please sign in to comment.