Georgy Shelkovy
Georgy Shelkovy
how about to load partials from json context before load it from files like https://gitlab.com/jobol/mustach does?
solve ```diff diff --git a/src/handlebars_string.c b/src/handlebars_string.c index 317125a..7e46d2b 100644 --- a/src/handlebars_string.c +++ b/src/handlebars_string.c @@ -170,20 +170,24 @@ void handlebars_string_delref(struct handlebars_string * string) void handlebars_string_addref_ex(struct handlebars_string * string, const char *...
how about string with length like ```c void handlebars_value_init_json_string_length(struct handlebars_context *ctx, struct handlebars_value * value, const char * json, size_t length) { enum json_tokener_error error; struct json_object *root; struct json_tokener...
ADBDEV-2872: ALTER TABLE erase pg_appendonly values Ensure reorganize keep default compresstype, compresslevel and blocksize table options. This is need for use for append-optimized column-oriented tables with compresstype, compresslevel and blocksize...
How about BlockingMode as opposite to LearningMode? like this ```diff diff --git a/naxsi_src/naxsi.h b/naxsi_src/naxsi.h index d9ac93b..f1e4a16 100644 --- a/naxsi_src/naxsi.h +++ b/naxsi_src/naxsi.h @@ -370,6 +370,7 @@ typedef struct ngx_array_t* persistant_data; ngx_flag_t...
How about DeniedError instead DeniedUrl? like this ```diff diff --git a/naxsi_src/naxsi.h b/naxsi_src/naxsi.h index 0d81ba6..d9ac93b 100644 --- a/naxsi_src/naxsi.h +++ b/naxsi_src/naxsi.h @@ -376,6 +376,7 @@ typedef struct ngx_flag_t libinjection_sql_enabled : 1; ngx_flag_t...
does not compile with -Wmissing-prototypes -Werror
https://github.com/agroal/pgagroal/blob/ce557da1539ff92e052845d8a0cfd059e40bc236/src/libpgagroal/message.c#L952-L955 what happens if malloc returns null?
```sql SELECT has_column('schema'::name, 'table'::name, 'column'::name); ``` treated as ```sql SELECT has_column('schema'::name, 'table'::name, 'column'::text); ```