updates
This commit is contained in:
parent
79af989226
commit
e0dc8620f2
5 changed files with 41 additions and 3 deletions
4
20211202143828-postgresql.org
Normal file
4
20211202143828-postgresql.org
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: af84ed59-96a4-4f9c-b34c-b79178ad20cb
|
||||||
|
:END:
|
||||||
|
#+title: PostgreSQL
|
4
aweber/20211202143853-appdb.org
Normal file
4
aweber/20211202143853-appdb.org
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: dd113e53-6144-4cb2-a4aa-da3dc2e3e6ea
|
||||||
|
:END:
|
||||||
|
#+title: AppDB
|
|
@ -32,10 +32,10 @@ Meeting with Scott and Eric.
|
||||||
* Searching any/all tags with quotation marks
|
* Searching any/all tags with quotation marks
|
||||||
https://jira.aweber.io/browse/CCPANEL-10726
|
https://jira.aweber.io/browse/CCPANEL-10726
|
||||||
|
|
||||||
The search code is escaping the characters, but string literals appear to handle
|
The [[id:d9cb2b55-3b0e-4ab3-8369-f71ebc3cd882][search]] code is escaping the characters, but string literals appear to handle
|
||||||
escaping differently between different versions of PostgreSQL. Versions 9.1 and
|
escaping differently between different versions of [[id:af84ed59-96a4-4f9c-b34c-b79178ad20cb][PostgreSQL]]. Versions 9.1 and
|
||||||
above default the =standard_conforming_strings= setting to =on=, which permits
|
above default the =standard_conforming_strings= setting to =on=, which permits
|
||||||
escaping. The AppDB PostgreSQL version in staging and production are on 9.0.23,
|
escaping. The [[id:dd113e53-6144-4cb2-a4aa-da3dc2e3e6ea][AppDB]] PostgreSQL version in staging and production are on 9.0.23,
|
||||||
and have the setting turned to =off=.
|
and have the setting turned to =off=.
|
||||||
|
|
||||||
Because of how search is currently built, in order to support searching on
|
Because of how search is currently built, in order to support searching on
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
#+title: 2021-11-30
|
#+title: 2021-11-30
|
||||||
|
|
||||||
* Import issues
|
* Import issues
|
||||||
|
https://aweber.slack.com/archives/CEM26RCMR/p1638119245004100
|
||||||
https://admin.aweber.io/account/imports/440922
|
https://admin.aweber.io/account/imports/440922
|
||||||
|
|
||||||
#+begin_quote
|
#+begin_quote
|
||||||
|
|
29
daily/2021-12-02.org
Normal file
29
daily/2021-12-02.org
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: e4076573-cb80-4df5-b432-9a1a1e477f60
|
||||||
|
:END:
|
||||||
|
#+title: 2021-12-02
|
||||||
|
|
||||||
|
* [[id:11edd6c9-b976-403b-a419-b5542ddedaae][Search]] inputs JSON
|
||||||
|
#+begin_src json
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"field": "name",
|
||||||
|
"description": "Name",
|
||||||
|
"operators": [
|
||||||
|
{
|
||||||
|
"name": "is",
|
||||||
|
"description": "is",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "choose",
|
||||||
|
"type": "enum",
|
||||||
|
"options": [
|
||||||
|
"a",
|
||||||
|
"b"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
#+end_src
|
Loading…
Reference in a new issue