-
Notifications
You must be signed in to change notification settings - Fork 2
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
Insert #50
Merged
Insert #50
Changes from 4 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
94808f3
adds remaining defdelgate to required functions #45
RobStallion e1f11ff
reorder function definitions to match behavior's order #45
RobStallion 87a7f9b
adds excid as dep #45
RobStallion 44f96fc
creates an insert function which adds cid and entry_id to params #45
RobStallion 4f9b4ea
removes previous migration files #45
RobStallion 3818a4e
Creates migration and schema for comments table
RobStallion 8a3e176
removes previous schema files #45
RobStallion f906baf
comment out all previous tests #45
RobStallion ad66390
remove functions that were causing errors #45
RobStallion eaa87b5
Adds timestamps to migration file. (leaves timestamps out of schema o…
RobStallion f43ca35
correct typo
RobStallion 7124449
Creates a test to insert a comment into the database #45
RobStallion ff3f1d3
creates a clause to ensure migrations to not fail because of schema_m…
RobStallion 65f898e
adds unique constraint to comment changeset #45
RobStallion 0c11e6f
adds tests #45
RobStallion 2b1bdf0
removes test causing error #45
RobStallion 5c801b4
Merge pull request #52 from dwyl/insert-testing
RobStallion 90927de
removes comments that are no longer needed #45
RobStallion c023e30
replace @conn with module name for clarity #45
RobStallion File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,52 @@ | ||
defmodule Alog.Connection do | ||
alias Ecto.Adapters.Postgres.Connection, as: EAPC | ||
|
||
@behaviour Ecto.Adapters.SQL.Connection | ||
@default_port 5432 | ||
|
||
@impl true | ||
def child_spec(opts) do | ||
opts | ||
|> Keyword.put_new(:port, @default_port) | ||
|> Postgrex.child_spec() | ||
end | ||
|
||
@impl true | ||
defdelegate prepare_execute(conn, name, statement, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate execute(conn, query, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate query(conn, statement, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate stream(conn, statement, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate to_constraints(error_struct), to: EAPC | ||
|
||
@impl true | ||
defdelegate all(query), to: EAPC | ||
|
||
@impl true | ||
defdelegate update_all(query, prefix \\ nil), to: EAPC | ||
|
||
@impl true | ||
defdelegate delete_all(query), to: EAPC | ||
|
||
@impl true | ||
defdelegate insert(prefix, table, header, rows, on_conflict, returning), to: EAPC | ||
|
||
@impl true | ||
defdelegate ddl_logs(result), to: Ecto.Adapter.Postgres | ||
defdelegate update(prefix, table, fields, filters, returning), to: EAPC | ||
|
||
@impl true | ||
defdelegate prepare_execute(connection, name, statement, params, options), | ||
to: Ecto.Adapter.Postgres | ||
defdelegate delete(prefix, table, filters, returning), to: EAPC | ||
|
||
@impl true | ||
defdelegate query(connection, statement, params, options), to: Ecto.Adapter.Postgres | ||
defdelegate execute_ddl(arg), to: EAPC | ||
|
||
@impl true | ||
defdelegate stream(connection, statement, params, options), to: Ecto.Adapter.Postgres | ||
defdelegate ddl_logs(result), to: EAPC | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
%{ | ||
"b58": {:hex, :b58, "0.1.1", "950563b90ad95be214143aa807d16c98d2ac7bab915097cb1461c936128c6b90", [:mix], [], "hexpm"}, | ||
"connection": {:hex, :connection, "1.0.4", "a1cae72211f0eef17705aaededacac3eb30e6625b04a6117c1b2db6ace7d5976", [:mix], [], "hexpm"}, | ||
"db_connection": {:hex, :db_connection, "2.0.5", "ddb2ba6761a08b2bb9ca0e7d260e8f4dd39067426d835c24491a321b7f92a4da", [:mix], [{:connection, "~> 1.0.2", [hex: :connection, repo: "hexpm", optional: false]}], "hexpm"}, | ||
"decimal": {:hex, :decimal, "1.6.0", "bfd84d90ff966e1f5d4370bdd3943432d8f65f07d3bab48001aebd7030590dcc", [:mix], [], "hexpm"}, | ||
"ecto": {:hex, :ecto, "3.0.7", "44dda84ac6b17bbbdeb8ac5dfef08b7da253b37a453c34ab1a98de7f7e5fec7f", [:mix], [{:decimal, "~> 1.6", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:poison, "~> 2.2 or ~> 3.0", [hex: :poison, repo: "hexpm", optional: true]}], "hexpm"}, | ||
"ecto_sql": {:hex, :ecto_sql, "3.0.5", "7e44172b4f7aca4469f38d7f6a3da394dbf43a1bcf0ca975e958cb957becd74e", [:mix], [{:db_connection, "~> 2.0", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.0.6", [hex: :ecto, repo: "hexpm", optional: false]}, {:mariaex, "~> 0.9.1", [hex: :mariaex, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.14.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.3.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm"}, | ||
"ex_multihash": {:hex, :ex_multihash, "2.0.0", "7fb36f842a2ec1c6bbba550f28fcd16d3c62981781b9466c9c1975c43d7db43c", [:mix], [], "hexpm"}, | ||
"excid": {:hex, :excid, "0.1.0", "85fd8ac6466660bc8c4c0b52275e7a255389c683a18f70aaed8cd2ac7735cfab", [:mix], [{:b58, "~> 0.1.1", [hex: :b58, repo: "hexpm", optional: false]}, {:ex_multihash, "~> 2.0", [hex: :ex_multihash, repo: "hexpm", optional: false]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm"}, | ||
"jason": {:hex, :jason, "1.1.2", "b03dedea67a99223a2eaf9f1264ce37154564de899fd3d8b9a21b1a6fd64afe7", [:mix], [{:decimal, "~> 1.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm"}, | ||
"postgrex": {:hex, :postgrex, "0.14.1", "63247d4a5ad6b9de57a0bac5d807e1c32d41e39c04b8a4156a26c63bcd8a2e49", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.0", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm"}, | ||
"telemetry": {:hex, :telemetry, "0.3.0", "099a7f3ce31e4780f971b4630a3c22ec66d22208bc090fe33a2a3a6a67754a73", [:rebar3], [], "hexpm"}, | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might be able to enhance this existing cid lookup later on. Maybe we could use a cache system to store all the current cid (with ETS)? If we can manage to not send another query to Postgres that would be ideal but it's working for now 👍