The
IN
operator also performs multiple queries: one for each item in the specified list, with all other filters unchanged and theIN
filter replaced with anEQUAL
filter. The results are merged in order of the items in the list. If a query has more than oneIN
filter, it is performed as multiple queries, one for each possible combination of values in theIN
lists.
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
diff --git a/docker-compose.override.yml b/docker-compose.override.yml | |
new file mode 100644 | |
index 000000000..af804c70e | |
--- /dev/null | |
+++ b/docker-compose.override.yml | |
@@ -0,0 +1,41 @@ | |
+version: "3.7" | |
+ | |
+services: | |
+ api: |
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
diff --git a/klab.engine/src/main/java/org/integratedmodelling/klab/cli/commands/Who.java b/klab.engine/src/main/java/org/integratedmodelling/klab/cli/commands/Who.java | |
index fb5d33ede..242f56343 100644 | |
--- a/klab.engine/src/main/java/org/integratedmodelling/klab/cli/commands/Who.java | |
+++ b/klab.engine/src/main/java/org/integratedmodelling/klab/cli/commands/Who.java | |
@@ -1,6 +1,7 @@ | |
package org.integratedmodelling.klab.cli.commands; | |
import java.util.Map; | |
+import java.util.stream.Collectors; | |
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
diff --git a/.circleci/deploy.sh b/.circleci/deploy.sh | |
index eb371e6..021918e 100755 | |
--- a/.circleci/deploy.sh | |
+++ b/.circleci/deploy.sh | |
@@ -3,26 +3,26 @@ | |
# Force-push the built HTML to the `gh-pages` branch. | |
# | |
-set -e | |
+set -eu |
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
((nil . ((cider-ns-refresh-before-fn . "integrant.repl/suspend") | |
(cider-ns-refresh-after-fn . "integrant.repl/resume") | |
(eval . (customize-set-variable 'cider-path-translations | |
(let ((m2 (concat (getenv "HOME") "/.m2"))) | |
(list | |
(cons "/app" (clojure-project-dir)) | |
(cons "/home/akvo/.m2" m2) | |
(cons "/root/.m2" m2)))))))) |
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
#!/usr/bin/env bash | |
# Note: It only supports GitHub, no caching nor fancy error handling | |
set -euo pipefail | |
repo="${1}" | |
directory="${repo/*\//}" | |
mkdir -p "${directory}" |
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
#+PROPERTY: header-args:sql :exports both | |
#+PROPERTY: header-args:sql+ :engine postgresql | |
#+PROPERTY: header-args:sql+ :dbhost localhost | |
#+PROPERTY: header-args:sql+ :dbuser lumen | |
#+PROPERTY: header-args:sql+ :dbpassword password | |
#+PROPERTY: header-args:sql+ :database lumen_tenant_1 | |
#+PROPERTY: header-args:bash :output results | |
#+STARTUP: showall |
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
diff --git a/GAE/src/com/gallatinsystems/survey/domain/WebForm.java b/GAE/src/com/gallatinsystems/survey/domain/WebForm.java | |
index 048d779fa..4db033575 100644 | |
--- a/GAE/src/com/gallatinsystems/survey/domain/WebForm.java | |
+++ b/GAE/src/com/gallatinsystems/survey/domain/WebForm.java | |
@@ -23,7 +23,7 @@ import java.util.stream.Collectors; | |
public class WebForm { | |
- public static Set<String> unsupportedQuestionTypes(){ | |
+ public static Set<String> unsupportedQuestionTypes() { |
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
#+PROPERTY: header-args:sql :cache no | |
#+PROPERTY: header-args:sql+ :exports both | |
#+PROPERTY: header-args:sql+ :engine postgresql | |
#+PROPERTY: header-args:sql+ :dbhost localhost | |
#+PROPERTY: header-args:sql+ :dbuser lumen | |
#+PROPERTY: header-args:sql+ :dbpassword password | |
#+PROPERTY: header-args:sql+ :database lumen_tenant_1 | |
#+PROPERTY: header-args:bash :results output | |
#+PROPERTY: header-args:bash+ :exports both | |
#+PROPERTY: header-args:bash+ :cache no |
NewerOlder