You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add an AS OF SYSTEM TIME clause to queries on the pg_type catalog.
* Add use_follower_reads database config option
* Reset connection after follower_reads test
* Change use_follower_reads setting to user_follower_reads_for_type_introspection and add Configuration section to README.
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,12 @@ development:
22
22
user: <username>
23
23
```
24
24
25
+
## Configuration
26
+
27
+
In addition to the standard adapter settings, CockroachDB also supports the following:
28
+
29
+
-`use_follower_reads_for_type_introspection`: Use follower reads on queries to the `pg_type` catalog when set to `true`. This helps to speed up initialization by reading historical data, but may not find recently created user-defined types.
30
+
25
31
## Working with Spatial Data
26
32
27
33
The adapter uses [RGeo](https://github.com/rgeo/rgeo) and [RGeo-ActiveRecord](https://github.com/rgeo/rgeo-activerecord) to represent geometric and geographic data as Ruby objects and easily interface them with the adapter. The following is a brief introduction to RGeo and tips to help setup your spatial application. More documentation about RGeo can be found in the [YARD Docs](https://rubydoc.info/github/rgeo/rgeo) and [wiki](https://github.com/rgeo/rgeo/wiki).
0 commit comments