-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Description
This query doesn't seem to work with SQLite3
ecto_sqlite3/test/ecto/adapters/sqlite3/connection_test.exs
Lines 139 to 144 in 6dcc0b2
| query = | |
| "posts" | |
| |> select([r], fragment("?", r)) | |
| |> plan() | |
| assert all(query) == ~s{SELECT p0 FROM "posts" AS p0} |
sqlite> create table example(a integer);
sqlite> select e0 from "example" as e0;
Parse error: no such column: e0
select e0 from "example" as e0;
^--- error hereI wonder if there is something we can do about it. Either raise or add .*.
Metadata
Metadata
Assignees
Labels
No labels