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
* support partial index
* add tests for partial index
* update examples for partial index
* import once in src/index/create.rs
* fix an output in examples/postgres/Readme.md
* cargo fmt for examples
* use bigdecimal:0.4.5
---------
Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
Copy file name to clipboardExpand all lines: examples/postgres/Readme.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ cargo run
7
7
8
8
Example output:
9
9
```
10
-
DROP TABLE IF EXISTS "document"; CREATE TABLE IF NOT EXISTS "document" ( "id" serial NOT NULL PRIMARY KEY, "json_field" jsonb, "timestamp" timestamp )
11
-
Create table document: ()
10
+
DROP TABLE IF EXISTS "document"; CREATE TABLE IF NOT EXISTS "document" ( "id" serial NOT NULL PRIMARY KEY, "uuid" uuid, "json_field" jsonb, "timestamp" timestamp, "timestamp_with_time_zone" timestamp with time zone, "decimal" decimal, "array" integer[] ); CREATE INDEX "partial_index_small_decimal" ON "document" ("decimal") WHERE NOT "decimal" < 11
0 commit comments