Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit ec58a09

Browse files
committed
Table generation script will look like this:
CREATE TABLE "CreatePostgreSQLTablesTests_dummy_table" ( "Id"" serial PRIMARY KEY, "StringNoExplicitLength" VARCHAR({0}) NULL, "String100Characters" VARCHAR(100) NULL ); Error is at "StringNoExplicitLength" column -> VARCHAR({0})
1 parent 7ad3e01 commit ec58a09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.OrmLite.PostgreSQL.Tests/CreatePostgreSQLTablesTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void can_create_tables_after_UseUnicode_or_DefaultStringLenght_changed()
2121

2222
//table creation fails after either of these:
2323
//OrmLiteConfig.DialectProvider.UseUnicode = true;
24-
//OrmLiteConfig.DialectProvider.UseUnicode = false;
24+
//OrmLiteConfig.DialectProvider.UseUnicode = false;
2525
OrmLiteConfig.DialectProvider.DefaultStringLength = 123;
2626

2727
_reCreateTheTable();

0 commit comments

Comments
 (0)