[DMDB] Fix typo in dmdb summary

This commit is contained in:
2026-08-13 13:37:17 +02:00
parent 90c543553f
commit b6c0086766
3 changed files with 8 additions and 3 deletions
Binary file not shown.
@@ -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}
+7 -2
View File
@@ -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