-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not artificially limit count queries (#273)
* Ignore more things. * Be more exact in out implemetation of the interface in database table storage. * Do not limit count queries, and create an sql_endpoint service. * Fix code style issues. * Fix complexity issue. * Fix unit tests. * Make code concise.
- Loading branch information
1 parent
c30e947
commit d26de9c
Showing
10 changed files
with
363 additions
and
185 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,7 @@ composer.lock | |
.docksal | ||
.idea | ||
docs/_build | ||
.vscode | ||
.vscode | ||
coverage | ||
cypress/videos | ||
package-lock.json |
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
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ core: 8.x | |
package: DKAN | ||
|
||
dependencies: | ||
- dkan_common | ||
- dkan_datastore |
5 changes: 5 additions & 0 deletions
5
modules/custom/dkan_sql_endpoint/dkan_sql_endpoint.services.yml
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
services: | ||
dkan_sql_endpoint.service: | ||
class: \Drupal\dkan_sql_endpoint\Service | ||
arguments: | ||
- '@config.factory' |
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
Oops, something went wrong.