Skip to content

Commit a05703b

Browse files
committed
Re run CI
1 parent fc61895 commit a05703b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ Features
4545
- Support mixed SQLite [data affinity](https://www.sqlite.org/datatype3.html) input and filtering (`SELECT`/`WHERE` usage) for such data types as
4646
- `timestamp`: `text` and `int`,
4747
- `uuid`: `text`(32..39) and `blob`(16),
48-
- `bool`: `text`(1..5) and `int`,
49-
- `double precision`, `float` and `numeric`: `real` values and special values with `text` affinity (`+Infinity`, `-Infinity`, `NaN`),
50-
- `macaddr`: `text`(12..17) or `blob`(6) or `integer`,
51-
- `macaddr8`: `text`(16..23) or `blob`(8) or `integer`.
48+
- `bool`: `text`(1..5) and `int`,
49+
- `double precision`, `float` and `numeric`: `real` values and special values with `text` affinity (`+Infinity`, `-Infinity`, `NaN`),
50+
- `macaddr`: `text`(12..17) or `blob`(6) or `integer`,
51+
- `macaddr8`: `text`(16..23) or `blob`(8) or `integer`.
5252
- Support mixed SQLite [data affinity](https://www.sqlite.org/datatype3.html) output (`INSERT`/`UPDATE`) for such data types as
5353
- `timestamp`: `text`(default) or `int`,
54-
- `uuid`: `text`(36) or `blob`(16)(default),
55-
- `macaddr`: `text`(17) or `blob`(6) or `integer`(default),
56-
- `macaddr8`: `text`(23) or `blob`(8) or `integer`(default).
54+
- `uuid`: `text`(36) or `blob`(16)(default),
55+
- `macaddr`: `text`(17) or `blob`(6) or `integer`(default),
56+
- `macaddr8`: `text`(23) or `blob`(8) or `integer`(default).
5757
- Full support for `+Infinity` (means ∞) and `-Infinity` (means -∞) special values for IEEE 754-2008 numbers in `double precision`, `float` and `numeric` columns including such conditions as ` n < '+Infinity'` or ` m > '-Infinity'`.
5858
- Bidirectional data transformation for `geometry` and `geography` data types for SpatiaLite ↔ PostGIS. [EWKB](https://libgeos.org/specifications/wkb/#extended-wkb) data transport is used. See [GIS support description](GIS.md).
5959

@@ -500,7 +500,7 @@ Once for a foreign datasource you need, as PostgreSQL superuser. Please specify
500500
CREATE SERVER sqlite_server
501501
FOREIGN DATA WRAPPER sqlite_fdw
502502
OPTIONS (
503-
database '/path/to/database'
503+
database '/path/to/database'
504504
);
505505
```
506506

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222

2323
# full test sequence,
2424
# you can put your own test sequence here by following example
25-
#export REGRESS="extra/sqlite_fdw_post .... ";
25+
#export REGRESS="extra/sqlite_fdw_post extra/test2 test3 types/test4 .... ";
2626

2727
make clean $@;
2828
make $@;

0 commit comments

Comments
 (0)