Skip to content

Commit

Permalink
docs(accursed): add cursed knowledge page (#10031)
Browse files Browse the repository at this point in the history
We have a lot of catching up to do, but we can at least note down these
horrors as we reencounter them.
  • Loading branch information
gforsyth authored Sep 6, 2024
1 parent 17a628c commit 85e1dcc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ website:
- reference/Repr.qmd
- reference/SQL.qmd

- section: Cursed Knowledge
contents:
- reference/cursed_knowledge.qmd

format:
html:
theme:
Expand Down
16 changes: 16 additions & 0 deletions docs/reference/cursed_knowledge.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Cursed Knowledge

Cursed knowledge the Ibis developers have acquired via battling with many, many
execution engines.

## Oracle

* Oracle's `LTRIM` and `RTRIM` functions accept a _set_ of whitespace (or other)
characters to remove from the left-, and right-hand-side sides of the input
string, but the `TRIM` function only accepts a single character to remove.

## Impala

* Impala's `LTRIM` and `RTRIM` functions accept a _set_ of whitespace (or other)
characters to remove from the left-, and right-hand-side sides of the input
string, but the `TRIM` function only removes _spaces_.

0 comments on commit 85e1dcc

Please sign in to comment.