mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-09-10 13:05:24 +02:00
[DMDB] Fix typo in dmdb summary
This commit is contained in:
Binary file not shown.
+1
-1
@@ -8,7 +8,7 @@ This scheme is used by actual systems, but they also have many additional detail
|
|||||||
A typical ideal application for a row store is Online Transaction Processing (OLTP).
|
A typical ideal application for a row store is Online Transaction Processing (OLTP).
|
||||||
This is visible for example with banking applications, shopping carts, etc, where the operations mostly are on a single tuple.
|
This is visible for example with banking applications, shopping carts, etc, where the operations mostly are on a single tuple.
|
||||||
|
|
||||||
However, for xomplex queries, the row store can become cumbersome.
|
However, for complex queries, the row store can become cumbersome.
|
||||||
|
|
||||||
|
|
||||||
\paragraph{Column Store}
|
\paragraph{Column Store}
|
||||||
|
|||||||
@@ -37,13 +37,18 @@ if [[ $usesubmodule != 'n' ]]; then
|
|||||||
else
|
else
|
||||||
read -e -p "Where are the helper files located (absolute path to folder only, tab-completion enabled)? " helperpath
|
read -e -p "Where are the helper files located (absolute path to folder only, tab-completion enabled)? " helperpath
|
||||||
|
|
||||||
if [[ ${dir:0:1} == '/' ]]; then
|
if [[ ${helperpath:0:1} == '/' ]]; then
|
||||||
|
createFiles $helperpath
|
||||||
|
elif [[ ${helperpath:0:1} == '~' ]]; then
|
||||||
|
helperpath=$(readlink -f $helperpath)
|
||||||
createFiles $helperpath
|
createFiles $helperpath
|
||||||
else
|
else
|
||||||
echo "Note: You did not enter an absolute path, it was expanded automatically"
|
echo "Note: You did not enter an absolute path, it was expanded automatically"
|
||||||
createFiles $(readlink -f $(pwd)/$helperpath)
|
helperpath=$(readlink -f $(pwd)/$helperpath)
|
||||||
|
createFiles $helperpath
|
||||||
fi
|
fi
|
||||||
echo "
|
echo "
|
||||||
|
=> Path was set to $helperpath
|
||||||
=> If you entered also the file name, rerun this script, the compile will fail in that case.
|
=> If you entered also the file name, rerun this script, the compile will fail in that case.
|
||||||
"
|
"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user