update sqlc gen

This commit is contained in:
Pavel 2024-03-17 18:08:51 +03:00
parent 120675f27a
commit df74226004
2 changed files with 0 additions and 4 deletions

@ -550,7 +550,6 @@ SELECT
Funnel.count_f_result_with_t_question,
Funnel.count_t_start_with_t_question,
Funnel.count_t_result,
Funnel.count_start_true,
Results.question_title AS results_title,
Results.percentage AS results_percentage,
Questions.question_title AS questions_title,

@ -1644,7 +1644,6 @@ SELECT
Funnel.count_f_result_with_t_question,
Funnel.count_t_start_with_t_question,
Funnel.count_t_result,
Funnel.count_start_true,
Results.question_title AS results_title,
Results.percentage AS results_percentage,
Questions.question_title AS questions_title,
@ -1668,7 +1667,6 @@ type QuestionsStatisticsRow struct {
CountFResultWithTQuestion int64 `db:"count_f_result_with_t_question" json:"count_f_result_with_t_question"`
CountTStartWithTQuestion int64 `db:"count_t_start_with_t_question" json:"count_t_start_with_t_question"`
CountTResult int64 `db:"count_t_result" json:"count_t_result"`
CountStartTrue_2 int64 `db:"count_start_true_2" json:"count_start_true_2"`
ResultsTitle string `db:"results_title" json:"results_title"`
ResultsPercentage int32 `db:"results_percentage" json:"results_percentage"`
QuestionsTitle string `db:"questions_title" json:"questions_title"`
@ -1691,7 +1689,6 @@ func (q *Queries) QuestionsStatistics(ctx context.Context, arg QuestionsStatisti
&i.CountFResultWithTQuestion,
&i.CountTStartWithTQuestion,
&i.CountTResult,
&i.CountStartTrue_2,
&i.ResultsTitle,
&i.ResultsPercentage,
&i.QuestionsTitle,