-
-
Notifications
You must be signed in to change notification settings - Fork 616
SQLite ModelBuilder Regex bug #1939
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @GlulkAlex Do you mind submitting this as a pull request and adding the test case to the sqlite schema used by the codegen tests. |
Hi @trevorsibanda, |
Also |
. Fixes slick#1939 * Add new table defenition with Decimal_Types to sqlite.sql * Add new asserts for DecimalTypes.baseTableRow in GeneratedCodeTest.scala * Add extract_Type_Props def to ModelBuilder in SQLiteProfile.scala
…r-Regex-bug Replacing RegEx pattern matching. Fixes #1939
Uh oh!
There was an error while loading. Please reload this page.
I'm trying to extract a db schema to build tables models
e.g. for this table:
and I got an exception:
I think that cased by this expression:
slick/slick/src/main/scala/slick/jdbc/SQLiteProfile.scala
Line 99 in 5013db0
e.g. following test snippet recreates the original error:
as a workaround I wrote my own extension for
SQLiteProfile
with override for
createModelBuilder
where replaced RegEx pattern with this function:
The text was updated successfully, but these errors were encountered: