Skip to content

Commit 88237f8

Browse files
committed
Don't have anymore PG data type be data objects otherwise they will get mapped to JSON in SQL templates
1 parent 2dade7d commit 88237f8

File tree

17 files changed

+8
-600
lines changed

17 files changed

+8
-600
lines changed
Lines changed: 0 additions & 130 deletions
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,5 @@
11
= Cheatsheets
22

3-
[[Box]]
4-
== Box
5-
6-
++++
7-
Rectangular box data type in Postgres represented by pairs of links that are opposite corners of the box.
8-
++++
9-
'''
10-
11-
[cols=">25%,25%,50%"]
12-
[frame="topbot"]
13-
|===
14-
^|Name | Type ^| Description
15-
|===
16-
17-
[[Circle]]
18-
== Circle
19-
20-
++++
21-
Circle data type in Postgres represented by a center link and radius.
22-
++++
23-
'''
24-
25-
[cols=">25%,25%,50%"]
26-
[frame="topbot"]
27-
|===
28-
^|Name | Type ^| Description
29-
|[[radius]]`@radius`|`Number (double)`|-
30-
|===
31-
32-
[[Interval]]
33-
== Interval
34-
35-
++++
36-
Postgres Interval is date and time based
37-
such as 120 years 3 months 332 days 20 hours 20 minutes 20.999999 seconds
38-
++++
39-
'''
40-
41-
[cols=">25%,25%,50%"]
42-
[frame="topbot"]
43-
|===
44-
^|Name | Type ^| Description
45-
|[[days]]`@days`|`Number (int)`|-
46-
|[[hours]]`@hours`|`Number (int)`|-
47-
|[[microseconds]]`@microseconds`|`Number (int)`|-
48-
|[[minutes]]`@minutes`|`Number (int)`|-
49-
|[[months]]`@months`|`Number (int)`|-
50-
|[[seconds]]`@seconds`|`Number (int)`|-
51-
|[[years]]`@years`|`Number (int)`|-
52-
|===
53-
54-
[[Line]]
55-
== Line
56-
57-
++++
58-
Line data type in Postgres represented by the linear equation Ax + By + C = 0, where A and B are not both zero.
59-
++++
60-
'''
61-
62-
[cols=">25%,25%,50%"]
63-
[frame="topbot"]
64-
|===
65-
^|Name | Type ^| Description
66-
|[[a]]`@a`|`Number (double)`|-
67-
|[[b]]`@b`|`Number (double)`|-
68-
|[[c]]`@c`|`Number (double)`|-
69-
|===
70-
71-
[[LineSegment]]
72-
== LineSegment
73-
74-
++++
75-
Finite line segment data type in Postgres represented by pairs of links that are the endpoints of the segment.
76-
++++
77-
'''
78-
79-
[cols=">25%,25%,50%"]
80-
[frame="topbot"]
81-
|===
82-
^|Name | Type ^| Description
83-
|===
84-
85-
[[Path]]
86-
== Path
87-
88-
++++
89-
Path data type in Postgres represented by lists of connected points.
90-
Paths can be open, where the first and last points in the list are considered not connected,
91-
or closed, where the first and last points are considered connected.
92-
++++
93-
'''
94-
95-
[cols=">25%,25%,50%"]
96-
[frame="topbot"]
97-
|===
98-
^|Name | Type ^| Description
99-
|[[open]]`@open`|`Boolean`|-
100-
|===
101-
1023
[[PgConnectOptions]]
1034
== PgConnectOptions
1045

@@ -178,34 +79,3 @@ Set the process id.
17879
+++
17980
|===
18081

181-
[[Point]]
182-
== Point
183-
184-
++++
185-
A Postgresql point.
186-
++++
187-
'''
188-
189-
[cols=">25%,25%,50%"]
190-
[frame="topbot"]
191-
|===
192-
^|Name | Type ^| Description
193-
|[[x]]`@x`|`Number (double)`|-
194-
|[[y]]`@y`|`Number (double)`|-
195-
|===
196-
197-
[[Polygon]]
198-
== Polygon
199-
200-
++++
201-
Polygon data type in Postgres represented by lists of points (the vertexes of the polygon).
202-
Polygons are very similar to closed paths, but are stored differently and have their own set of support routines.
203-
++++
204-
'''
205-
206-
[cols=">25%,25%,50%"]
207-
[frame="topbot"]
208-
|===
209-
^|Name | Type ^| Description
210-
|===
211-

vertx-pg-client/src/main/generated/io/vertx/pgclient/data/BoxConverter.java

Lines changed: 0 additions & 44 deletions
This file was deleted.

vertx-pg-client/src/main/generated/io/vertx/pgclient/data/CircleConverter.java

Lines changed: 0 additions & 42 deletions
This file was deleted.

vertx-pg-client/src/main/generated/io/vertx/pgclient/data/IntervalConverter.java

Lines changed: 0 additions & 70 deletions
This file was deleted.

vertx-pg-client/src/main/generated/io/vertx/pgclient/data/LineConverter.java

Lines changed: 0 additions & 46 deletions
This file was deleted.

vertx-pg-client/src/main/generated/io/vertx/pgclient/data/LineSegmentConverter.java

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)