diff options
author | Marc Coquand <marc@mccd.space> | 2023-12-26 15:46:04 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2023-12-26 15:46:04 -0600 |
commit | c75ab6042f40f9101e88d41c1d41b5e41c3f12ef (patch) | |
tree | d21b6771833e07b6f4b6cb58c4fbce109485d7c8 /test | |
parent | 508c7c9b34a892d74d087f1ef5d54d16fa000551 (diff) | |
download | fixgen-c75ab6042f40f9101e88d41c1d41b5e41c3f12ef.tar.gz fixgen-c75ab6042f40f9101e88d41c1d41b5e41c3f12ef.tar.bz2 fixgen-c75ab6042f40f9101e88d41c1d41b5e41c3f12ef.zip |
Add increment type
Diffstat (limited to 'test')
-rw-r--r-- | test/test_parser.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_parser.ml b/test/test_parser.ml index e18f055..db18540 100644 --- a/test/test_parser.ml +++ b/test/test_parser.ml @@ -27,7 +27,7 @@ let rows_suite = , `Quick , test_parse "purchases (5): name int(1,20)" ) ; "Supports underscore tables", `Quick, test_parse "purchases_new (5): name int(1,20)" - ; "Supports underscore tables", `Quick, test_parse "purchases_new (5): name int(1,20)" + ; "Supports incremental index", `Quick, test_parse "purchases_new (5): id increment" ] |