Andrei Simonov
Andrei Simonov
Hi! Here's reworked comments parsing section. New features suggested: - ability to change argument name with braces eg. `//zenrpc:param(alias)` - ability to specify default value with spaces using ticks (\`)...
Setting default value for string parameters with space(s) causes generator error. Example code: ```go // Echo returns input string. //zenrpc:to="John Doe" name goes here func (s *Say) Hello(to string) string...
Prepare db: ```sql create table test ( date DateTime, event String ) engine MergeTree() order by date; ``` Run go code: ```go func TestIssue2(t *testing.T) { conn, _ := dbr.Open("clickhouse",...
Here's the case. Prepare some db and test if it's working: ```sql create table test ( date DateTime, event String ) engine MergeTree() order by date; insert into test format...