Module: kamailio
Branch: master
Commit: 12cdb896fed98a38bfd9b77e1ace1dd346901cc3
URL:
https://github.com/kamailio/kamailio/commit/12cdb896fed98a38bfd9b77e1ace1dd…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-09-06T10:07:41+02:00
lib/srdb1/schema: increase default size of columns for htable
- same type, version kept, code nca work with different size already
---
Modified: src/lib/srdb1/schema/htable.xml
---
Diff:
https://github.com/kamailio/kamailio/commit/12cdb896fed98a38bfd9b77e1ace1dd…
Patch:
https://github.com/kamailio/kamailio/commit/12cdb896fed98a38bfd9b77e1ace1dd…
---
diff --git a/src/lib/srdb1/schema/htable.xml b/src/lib/srdb1/schema/htable.xml
index 9ee35d2fe71..ab60cc7fd3c 100644
--- a/src/lib/srdb1/schema/htable.xml
+++ b/src/lib/srdb1/schema/htable.xml
@@ -36,7 +36,7 @@
<column id="key_name">
<name>key_name</name>
<type>string</type>
- <size>64</size>
+ <size>256</size>
<default/>
<description>Name of the hash key</description>
</column>
@@ -58,7 +58,7 @@
<column id="attribute">
<name>key_value</name>
<type>string</type>
- <size>128</size>
+ <size>512</size>
<default/>
<description>The value of the key</description>
</column>