-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: describe how drivers/driver manager relate
Fixes #1651.
- Loading branch information
Showing
15 changed files
with
534 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -18,6 +18,9 @@ | |
# Generate Mermaid diagrams statically. Sphinx has a mermaid | ||
# extension, but this causes issues with the page shifting during | ||
# load. | ||
# First: npm install -g @mermaid-js/mermaid-cli | ||
# (if you are using Conda, this will not be "global" but rather install to | ||
# your Conda prefix) | ||
# Use as: make -f mermaid.makefile -j all | ||
|
||
MERMAID := $(shell find source/ -type f -name '*.mmd') | ||
|
@@ -27,7 +30,10 @@ define LICENSE | |
endef | ||
|
||
%.mmd.svg : %.mmd | ||
mmdc --input $< --output $@ | ||
# XXX: mermaid doesn't properly handle comments in all layouts (the parser is | ||
# written entirely from scratch each time, it looks like), so strip them | ||
# manually | ||
grep -E -v "^%" $< | mmdc --input - --output $@ | ||
# Prepend the license header | ||
mv $@ [email protected] | ||
echo "<!--" >> $@ | ||
|
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
%% Licensed to the Apache Software Foundation (ASF) under one | ||
%% or more contributor license agreements. See the NOTICE file | ||
%% distributed with this work for additional information | ||
%% regarding copyright ownership. The ASF licenses this file | ||
%% to you under the Apache License, Version 2.0 (the | ||
%% "License"); you may not use this file except in compliance | ||
%% with the License. You may obtain a copy of the License at | ||
%% | ||
%% http://www.apache.org/licenses/LICENSE-2.0 | ||
%% | ||
%% Unless required by applicable law or agreed to in writing, | ||
%% software distributed under the License is distributed on an | ||
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
%% KIND, either express or implied. See the License for the | ||
%% specific language governing permissions and limitations | ||
%% under the License. | ||
|
||
block-beta | ||
columns 3 | ||
app["<b>Application</b>"]:3 | ||
|
||
space:3 | ||
|
||
driver["<b>Driver</b>"]:3 | ||
AdbcStatementExecuteQuery | ||
AdbcStatementSetSqlQuery | ||
... | ||
SqliteStatementExecuteQuery | ||
SqliteStatementSetSqlQuery | ||
... | ||
|
||
app --> SqliteStatementExecuteQuery |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,29 @@ | ||
%% Licensed to the Apache Software Foundation (ASF) under one | ||
%% or more contributor license agreements. See the NOTICE file | ||
%% distributed with this work for additional information | ||
%% regarding copyright ownership. The ASF licenses this file | ||
%% to you under the Apache License, Version 2.0 (the | ||
%% "License"); you may not use this file except in compliance | ||
%% with the License. You may obtain a copy of the License at | ||
%% | ||
%% http://www.apache.org/licenses/LICENSE-2.0 | ||
%% | ||
%% Unless required by applicable law or agreed to in writing, | ||
%% software distributed under the License is distributed on an | ||
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
%% KIND, either express or implied. See the License for the | ||
%% specific language governing permissions and limitations | ||
%% under the License. | ||
|
||
block-beta | ||
columns 3 | ||
app["<b>Application</b>"]:3 | ||
|
||
space:3 | ||
|
||
driver["<b>Driver</b>"]:3 | ||
AdbcStatementExecuteQuery | ||
AdbcStatementSetSqlQuery | ||
... | ||
|
||
app --> AdbcStatementExecuteQuery |
Oops, something went wrong.