├── .clang-format ├── .github └── workflows │ ├── linux-cxx20-vcpkg.yaml │ ├── macos-cxx20-vcpkg.yaml │ └── windows-cxx20-vcpkg.yaml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── conanfile.py ├── docs ├── README.md ├── cache.md ├── col.md ├── connection_pool.md ├── create_as.md ├── create_index.md ├── create_table.md ├── defining_tables.md ├── delete_from.md ├── drop.md ├── duckdb.md ├── dynamic.md ├── enum.md ├── exec.md ├── flatten.md ├── foreign_key.md ├── group_by_and_aggregations.md ├── insert.md ├── joins.md ├── json.md ├── literals.md ├── mathematical_operations.md ├── mysql.md ├── null_handling_operations.md ├── pattern.md ├── postgres.md ├── primary_key.md ├── reading.md ├── result.md ├── select_from.md ├── sqlite.md ├── string_operations.md ├── timestamp.md ├── timestamp_operations.md ├── to_sql.md ├── transactions.md ├── type_conversion_operations.md ├── unique.md ├── unite.md ├── update.md ├── varchar.md ├── views.md └── writing.md ├── include ├── sqlgen.hpp └── sqlgen │ ├── ConnectionPool.hpp │ ├── Flatten.hpp │ ├── ForeignKey.hpp │ ├── Iterator.hpp │ ├── JSON.hpp │ ├── Literal.hpp │ ├── Pattern.hpp │ ├── PrimaryKey.hpp │ ├── Range.hpp │ ├── Ref.hpp │ ├── Result.hpp │ ├── Session.hpp │ ├── Timestamp.hpp │ ├── Transaction.hpp │ ├── Unique.hpp │ ├── Varchar.hpp │ ├── aggregations.hpp │ ├── as.hpp │ ├── begin_transaction.hpp │ ├── cache.hpp │ ├── cascade.hpp │ ├── col.hpp │ ├── commit.hpp │ ├── create_as.hpp │ ├── create_index.hpp │ ├── create_table.hpp │ ├── delete_from.hpp │ ├── drop.hpp │ ├── duckdb.hpp │ ├── duckdb │ ├── ColumnData.hpp │ ├── Connection.hpp │ ├── DuckDBAppender.hpp │ ├── DuckDBConnection.hpp │ ├── DuckDBResult.hpp │ ├── Iterator.hpp │ ├── cast_duckdb_type.hpp │ ├── check_duckdb_type.hpp │ ├── chunk_ptrs_t.hpp │ ├── connect.hpp │ ├── from_chunk_ptrs.hpp │ ├── make_chunk_ptrs.hpp │ ├── parsing │ │ ├── Parser.hpp │ │ ├── Parser_base.hpp │ │ ├── Parser_date.hpp │ │ ├── Parser_default.hpp │ │ ├── Parser_enum.hpp │ │ ├── Parser_json.hpp │ │ ├── Parser_optional.hpp │ │ ├── Parser_reflection_type.hpp │ │ ├── Parser_smart_ptr.hpp │ │ ├── Parser_string.hpp │ │ └── Parser_timestamp.hpp │ └── to_sql.hpp │ ├── dynamic │ ├── Aggregation.hpp │ ├── Column.hpp │ ├── ColumnOrAggregation.hpp │ ├── ColumnOrValue.hpp │ ├── Condition.hpp │ ├── CreateAs.hpp │ ├── CreateIndex.hpp │ ├── CreateTable.hpp │ ├── DeleteFrom.hpp │ ├── Drop.hpp │ ├── GroupBy.hpp │ ├── Insert.hpp │ ├── Join.hpp │ ├── JoinType.hpp │ ├── Limit.hpp │ ├── Offset.hpp │ ├── Operation.hpp │ ├── OrderBy.hpp │ ├── SelectFrom.hpp │ ├── Statement.hpp │ ├── Table.hpp │ ├── TableOrView.hpp │ ├── TimeUnit.hpp │ ├── Type.hpp │ ├── Union.hpp │ ├── Update.hpp │ ├── Value.hpp │ ├── Write.hpp │ ├── create_table.hpp │ └── types.hpp │ ├── exec.hpp │ ├── group_by.hpp │ ├── if_exists.hpp │ ├── if_not_exists.hpp │ ├── insert.hpp │ ├── internal │ ├── GetColType.hpp │ ├── MockTable.hpp │ ├── all_same_v.hpp │ ├── batch_size.hpp │ ├── call_destructors_where_necessary.hpp │ ├── collect │ │ └── vector.hpp │ ├── from_str_vec.hpp │ ├── has_constraint.hpp │ ├── has_primary_key.hpp │ ├── has_unique_column.hpp │ ├── is_constraint.hpp │ ├── is_primary_key.hpp │ ├── is_range.hpp │ ├── is_unique_column.hpp │ ├── iterator_t.hpp │ ├── query_value_t.hpp │ ├── random.hpp │ ├── remove_auto_incr_primary_t.hpp │ ├── strings │ │ └── strings.hpp │ ├── to_container.hpp │ ├── to_str.hpp │ ├── to_str_vec.hpp │ └── write_or_insert.hpp │ ├── is_connection.hpp │ ├── joins.hpp │ ├── limit.hpp │ ├── literals.hpp │ ├── mysql.hpp │ ├── mysql │ ├── Connection.hpp │ ├── Credentials.hpp │ ├── Iterator.hpp │ ├── connect.hpp │ ├── exec.hpp │ ├── make_error.hpp │ └── to_sql.hpp │ ├── offset.hpp │ ├── operations.hpp │ ├── order_by.hpp │ ├── parsing │ ├── Parser.hpp │ ├── Parser_base.hpp │ ├── Parser_default.hpp │ ├── Parser_foreign_key.hpp │ ├── Parser_json.hpp │ ├── Parser_optional.hpp │ ├── Parser_primary_key.hpp │ ├── Parser_shared_ptr.hpp │ ├── Parser_string.hpp │ ├── Parser_timestamp.hpp │ ├── Parser_unique.hpp │ ├── Parser_unique_ptr.hpp │ └── Parser_varchar.hpp │ ├── patterns.hpp │ ├── postgres.hpp │ ├── postgres │ ├── Connection.hpp │ ├── Credentials.hpp │ ├── Iterator.hpp │ ├── PostgresV2Connection.hpp │ ├── PostgresV2Result.hpp │ ├── connect.hpp │ ├── exec.hpp │ └── to_sql.hpp │ ├── read.hpp │ ├── rollback.hpp │ ├── select_from.hpp │ ├── sqlgen_api.hpp │ ├── sqlite.hpp │ ├── sqlite │ ├── Connection.hpp │ ├── Iterator.hpp │ ├── connect.hpp │ └── to_sql.hpp │ ├── to.hpp │ ├── transpilation │ ├── Aggregation.hpp │ ├── AggregationOp.hpp │ ├── As.hpp │ ├── Col.hpp │ ├── Condition.hpp │ ├── Desc.hpp │ ├── Join.hpp │ ├── Limit.hpp │ ├── Offset.hpp │ ├── Operation.hpp │ ├── Operator.hpp │ ├── OperatorCategory.hpp │ ├── Set.hpp │ ├── TableWrapper.hpp │ ├── Union.hpp │ ├── Value.hpp │ ├── all_columns_exist.hpp │ ├── check_aggregations.hpp │ ├── columns_t.hpp │ ├── conditions.hpp │ ├── dynamic_aggregation_t.hpp │ ├── dynamic_operator_t.hpp │ ├── extract_table_t.hpp │ ├── fields_to_named_tuple_t.hpp │ ├── flatten_fields_t.hpp │ ├── get_schema.hpp │ ├── get_table_or_view.hpp │ ├── get_table_t.hpp │ ├── get_tablename.hpp │ ├── group_by_t.hpp │ ├── has_reflection_method.hpp │ ├── has_schema.hpp │ ├── is_duration.hpp │ ├── is_nullable.hpp │ ├── is_primary_key.hpp │ ├── is_timestamp.hpp │ ├── make_columns.hpp │ ├── make_field.hpp │ ├── make_fields.hpp │ ├── order_by_t.hpp │ ├── read_to_select_from.hpp │ ├── remove_as_t.hpp │ ├── remove_nullable_t.hpp │ ├── remove_reflection_t.hpp │ ├── string_t.hpp │ ├── table_tuple_t.hpp │ ├── to_alias.hpp │ ├── to_condition.hpp │ ├── to_create_as.hpp │ ├── to_create_index.hpp │ ├── to_create_table.hpp │ ├── to_delete_from.hpp │ ├── to_drop.hpp │ ├── to_duration.hpp │ ├── to_group_by.hpp │ ├── to_insert_or_write.hpp │ ├── to_joins.hpp │ ├── to_limit.hpp │ ├── to_offset.hpp │ ├── to_order_by.hpp │ ├── to_select_from.hpp │ ├── to_sets.hpp │ ├── to_sql.hpp │ ├── to_table_or_query.hpp │ ├── to_transpilation_type.hpp │ ├── to_union.hpp │ ├── to_update.hpp │ ├── to_value.hpp │ ├── underlying_t.hpp │ ├── value_t.hpp │ └── wrap_in_optional_t.hpp │ ├── unite.hpp │ ├── update.hpp │ ├── where.hpp │ └── write.hpp ├── sqlgen-config.cmake.in ├── src ├── sqlgen.cpp ├── sqlgen │ ├── duckdb │ │ ├── Connection.cpp │ │ ├── DuckDBAppender.cpp │ │ ├── DuckDBConnection.cpp │ │ ├── DuckDBResult.cpp │ │ └── to_sql.cpp │ ├── internal │ │ └── strings │ │ │ └── strings.cpp │ ├── mysql │ │ ├── Connection.cpp │ │ ├── Iterator.cpp │ │ ├── exec.cpp │ │ └── to_sql.cpp │ ├── postgres │ │ ├── Connection.cpp │ │ ├── Iterator.cpp │ │ ├── PostgresV2Connection.cpp │ │ ├── PostgresV2Result.cpp │ │ ├── exec.cpp │ │ └── to_sql.cpp │ └── sqlite │ │ ├── Connection.cpp │ │ ├── Iterator.cpp │ │ └── to_sql.cpp ├── sqlgen_duckdb.cpp ├── sqlgen_mysql.cpp ├── sqlgen_postgres.cpp └── sqlgen_sqlite.cpp ├── tests ├── CMakeLists.txt ├── duckdb │ ├── CMakeLists.txt │ ├── test_aggregations.cpp │ ├── test_aggregations_with_nullable.cpp │ ├── test_alpha_numeric.cpp │ ├── test_alpha_numeric_query.cpp │ ├── test_auto_incr_primary_key.cpp │ ├── test_boolean.cpp │ ├── test_boolean_conditions.cpp │ ├── test_boolean_update.cpp │ ├── test_cache.cpp │ ├── test_create_index.cpp │ ├── test_create_table.cpp │ ├── test_create_table_as.cpp │ ├── test_create_view_as.cpp │ ├── test_delete_from.cpp │ ├── test_drop.cpp │ ├── test_dynamic_type.cpp │ ├── test_enum_crosstable.cpp │ ├── test_enum_lookup.cpp │ ├── test_enum_namespace.cpp │ ├── test_flatten.cpp │ ├── test_foreign_key.cpp │ ├── test_full_join.cpp │ ├── test_group_by.cpp │ ├── test_group_by_with_operations.cpp │ ├── test_hello_world.cpp │ ├── test_in.cpp │ ├── test_in_vec.cpp │ ├── test_insert_and_read.cpp │ ├── test_insert_by_ref_and_read.cpp │ ├── test_insert_fail.cpp │ ├── test_insert_or_replace.cpp │ ├── test_is_null.cpp │ ├── test_join.cpp │ ├── test_joins_from.cpp │ ├── test_joins_nested.cpp │ ├── test_joins_nested_grouped.cpp │ ├── test_joins_two_tables.cpp │ ├── test_joins_two_tables_grouped.cpp │ ├── test_json.cpp │ ├── test_left_join.cpp │ ├── test_like.cpp │ ├── test_limit.cpp │ ├── test_not_in.cpp │ ├── test_not_in_vec.cpp │ ├── test_offset.cpp │ ├── test_operations.cpp │ ├── test_operations_with_nullable.cpp │ ├── test_order_by.cpp │ ├── test_range.cpp │ ├── test_range_select_from.cpp │ ├── test_range_select_from_with_to.cpp │ ├── test_right_join.cpp │ ├── test_select_from_with_timestamps.cpp │ ├── test_single_read.cpp │ ├── test_timestamp.cpp │ ├── test_to_create_table.cpp │ ├── test_to_insert.cpp │ ├── test_to_insert_or_replace.cpp │ ├── test_to_select_from.cpp │ ├── test_to_select_from_with_schema.cpp │ ├── test_transaction.cpp │ ├── test_union.cpp │ ├── test_union_all.cpp │ ├── test_union_in_join.cpp │ ├── test_union_in_join2.cpp │ ├── test_union_in_select.cpp │ ├── test_unique.cpp │ ├── test_update.cpp │ ├── test_varchar.cpp │ ├── test_where.cpp │ ├── test_where_with_nullable.cpp │ ├── test_where_with_nullable_operations.cpp │ ├── test_where_with_operations.cpp │ ├── test_where_with_timestamps.cpp │ ├── test_write_and_read.cpp │ ├── test_write_and_read_curried.cpp │ └── test_write_and_read_to_file.cpp ├── mysql │ ├── CMakeLists.txt │ ├── test_aggregations.cpp │ ├── test_aggregations_with_nullable.cpp │ ├── test_auto_incr_primary_key.cpp │ ├── test_boolean.cpp │ ├── test_boolean_conditions.cpp │ ├── test_boolean_update.cpp │ ├── test_cache.cpp │ ├── test_create_index.cpp │ ├── test_create_index_dry.cpp │ ├── test_create_table.cpp │ ├── test_create_table_as.cpp │ ├── test_create_table_dry.cpp │ ├── test_create_view_as.cpp │ ├── test_delete_from.cpp │ ├── test_delete_from_dry.cpp │ ├── test_drop_dry.cpp │ ├── test_dynamic_type.cpp │ ├── test_enum_crosstable.cpp │ ├── test_enum_lookup.cpp │ ├── test_enum_namespace.cpp │ ├── test_foreign_key.cpp │ ├── test_group_by.cpp │ ├── test_group_by_with_operations.cpp │ ├── test_in.cpp │ ├── test_in_vec.cpp │ ├── test_insert_and_read.cpp │ ├── test_insert_and_read_two_tables.cpp │ ├── test_insert_dry.cpp │ ├── test_insert_fail.cpp │ ├── test_insert_or_replace.cpp │ ├── test_is_null.cpp │ ├── test_is_null_dry.cpp │ ├── test_join.cpp │ ├── test_joins_from.cpp │ ├── test_joins_nested.cpp │ ├── test_joins_nested_grouped.cpp │ ├── test_joins_two_tables.cpp │ ├── test_joins_two_tables_grouped.cpp │ ├── test_json.cpp │ ├── test_left_join.cpp │ ├── test_like.cpp │ ├── test_like_dry.cpp │ ├── test_limit.cpp │ ├── test_not_in.cpp │ ├── test_not_in_vec.cpp │ ├── test_offset.cpp │ ├── test_operations.cpp │ ├── test_operations_with_nullable.cpp │ ├── test_range.cpp │ ├── test_range_select_from.cpp │ ├── test_right_join.cpp │ ├── test_select_from_with_timestamps.cpp │ ├── test_select_from_with_to.cpp │ ├── test_timestamp.cpp │ ├── test_timestamp_dry.cpp │ ├── test_to_insert_or_replace_dry.cpp │ ├── test_to_select_from2_dry.cpp │ ├── test_to_select_from_dry.cpp │ ├── test_to_select_from_with_schema_dry.cpp │ ├── test_transaction.cpp │ ├── test_union.cpp │ ├── test_union_all.cpp │ ├── test_union_in_join.cpp │ ├── test_union_in_join2.cpp │ ├── test_union_in_select.cpp │ ├── test_unique.cpp │ ├── test_update.cpp │ ├── test_update_dry.cpp │ ├── test_varchar.cpp │ ├── test_where.cpp │ ├── test_where_dry.cpp │ ├── test_where_with_operations.cpp │ ├── test_where_with_timestamps.cpp │ ├── test_write_and_read.cpp │ ├── test_write_and_read_curried.cpp │ └── test_write_and_read_pool.cpp ├── postgres │ ├── CMakeLists.txt │ ├── test_aggregations.cpp │ ├── test_aggregations_with_nullable.cpp │ ├── test_auto_incr_primary_key.cpp │ ├── test_boolean.cpp │ ├── test_boolean_conditions.cpp │ ├── test_boolean_update.cpp │ ├── test_cache.cpp │ ├── test_create_index.cpp │ ├── test_create_index_dry.cpp │ ├── test_create_index_where.cpp │ ├── test_create_index_where_dry.cpp │ ├── test_create_table.cpp │ ├── test_create_table_as.cpp │ ├── test_create_table_dry.cpp │ ├── test_create_view_as.cpp │ ├── test_delete_from.cpp │ ├── test_delete_from_dry.cpp │ ├── test_drop_dry.cpp │ ├── test_dynamic_type.cpp │ ├── test_enum_crosstable.cpp │ ├── test_enum_lookup.cpp │ ├── test_enum_namespace.cpp │ ├── test_foreign_key.cpp │ ├── test_full_join.cpp │ ├── test_group_by.cpp │ ├── test_group_by_with_operations.cpp │ ├── test_in.cpp │ ├── test_in_vec.cpp │ ├── test_insert_and_read.cpp │ ├── test_insert_and_read_two_tables.cpp │ ├── test_insert_dry.cpp │ ├── test_insert_fail.cpp │ ├── test_insert_or_replace.cpp │ ├── test_is_null.cpp │ ├── test_is_null_dry.cpp │ ├── test_join.cpp │ ├── test_joins_from.cpp │ ├── test_joins_nested.cpp │ ├── test_joins_nested_grouped.cpp │ ├── test_joins_two_tables.cpp │ ├── test_joins_two_tables_grouped.cpp │ ├── test_json.cpp │ ├── test_left_join.cpp │ ├── test_like.cpp │ ├── test_like_dry.cpp │ ├── test_limit.cpp │ ├── test_not_in.cpp │ ├── test_not_in_vec.cpp │ ├── test_offset.cpp │ ├── test_operations.cpp │ ├── test_operations_with_nullable.cpp │ ├── test_range.cpp │ ├── test_range_select_from.cpp │ ├── test_read_to_sql.cpp │ ├── test_right_join.cpp │ ├── test_select_from_with_sessions.cpp │ ├── test_select_from_with_timestamps.cpp │ ├── test_select_from_with_to.cpp │ ├── test_timestamp.cpp │ ├── test_timestamp_dry.cpp │ ├── test_timestamp_with_tz.cpp │ ├── test_timestamp_with_tz_dry.cpp │ ├── test_to_insert_or_replace_dry.cpp │ ├── test_to_select_from2_dry.cpp │ ├── test_to_select_from_dry.cpp │ ├── test_to_select_from_with_schema_dry.cpp │ ├── test_transaction.cpp │ ├── test_union.cpp │ ├── test_union_all.cpp │ ├── test_union_in_join.cpp │ ├── test_union_in_join2.cpp │ ├── test_union_in_select.cpp │ ├── test_unique.cpp │ ├── test_update.cpp │ ├── test_update_dry.cpp │ ├── test_varchar.cpp │ ├── test_where.cpp │ ├── test_where_dry.cpp │ ├── test_where_with_operations.cpp │ ├── test_where_with_timestamps.cpp │ ├── test_write_and_read.cpp │ ├── test_write_and_read_curried.cpp │ └── test_write_and_read_pool.cpp └── sqlite │ ├── CMakeLists.txt │ ├── test_aggregations.cpp │ ├── test_aggregations_with_nullable.cpp │ ├── test_alpha_numeric.cpp │ ├── test_alpha_numeric_query.cpp │ ├── test_auto_incr_primary_key.cpp │ ├── test_boolean.cpp │ ├── test_boolean_conditions.cpp │ ├── test_boolean_update.cpp │ ├── test_cache.cpp │ ├── test_create_index.cpp │ ├── test_create_table.cpp │ ├── test_create_table_as.cpp │ ├── test_create_view_as.cpp │ ├── test_delete_from.cpp │ ├── test_drop.cpp │ ├── test_dynamic_type.cpp │ ├── test_enum_crosstable.cpp │ ├── test_enum_lookup.cpp │ ├── test_enum_namespace.cpp │ ├── test_flatten.cpp │ ├── test_foreign_key.cpp │ ├── test_full_join.cpp │ ├── test_group_by.cpp │ ├── test_group_by_with_operations.cpp │ ├── test_hello_world.cpp │ ├── test_in.cpp │ ├── test_in_vec.cpp │ ├── test_insert_and_read.cpp │ ├── test_insert_by_ref_and_read.cpp │ ├── test_insert_fail.cpp │ ├── test_insert_or_replace.cpp │ ├── test_is_null.cpp │ ├── test_join.cpp │ ├── test_joins_from.cpp │ ├── test_joins_nested.cpp │ ├── test_joins_nested_grouped.cpp │ ├── test_joins_two_tables.cpp │ ├── test_joins_two_tables_grouped.cpp │ ├── test_json.cpp │ ├── test_left_join.cpp │ ├── test_like.cpp │ ├── test_limit.cpp │ ├── test_not_in.cpp │ ├── test_not_in_vec.cpp │ ├── test_offset.cpp │ ├── test_operations.cpp │ ├── test_operations_with_nullable.cpp │ ├── test_order_by.cpp │ ├── test_range.cpp │ ├── test_range_select_from.cpp │ ├── test_range_select_from_with_to.cpp │ ├── test_right_join.cpp │ ├── test_select_from_with_timestamps.cpp │ ├── test_single_read.cpp │ ├── test_timestamp.cpp │ ├── test_to_create_table.cpp │ ├── test_to_insert.cpp │ ├── test_to_insert_or_replace.cpp │ ├── test_to_select_from.cpp │ ├── test_to_select_from_with_schema.cpp │ ├── test_transaction.cpp │ ├── test_union.cpp │ ├── test_union_all.cpp │ ├── test_union_in_join.cpp │ ├── test_union_in_join2.cpp │ ├── test_union_in_select.cpp │ ├── test_unique.cpp │ ├── test_update.cpp │ ├── test_varchar.cpp │ ├── test_where.cpp │ ├── test_where_with_nullable.cpp │ ├── test_where_with_nullable_operations.cpp │ ├── test_where_with_operations.cpp │ ├── test_where_with_timestamps.cpp │ ├── test_write_and_read.cpp │ ├── test_write_and_read_curried.cpp │ └── test_write_and_read_to_file.cpp ├── vcpkg-configuration.json └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle : Google 2 | -------------------------------------------------------------------------------- /.github/workflows/linux-cxx20-vcpkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/.github/workflows/linux-cxx20-vcpkg.yaml -------------------------------------------------------------------------------- /.github/workflows/macos-cxx20-vcpkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/.github/workflows/macos-cxx20-vcpkg.yaml -------------------------------------------------------------------------------- /.github/workflows/windows-cxx20-vcpkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/.github/workflows/windows-cxx20-vcpkg.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/README.md -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/conanfile.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/cache.md -------------------------------------------------------------------------------- /docs/col.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/col.md -------------------------------------------------------------------------------- /docs/connection_pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/connection_pool.md -------------------------------------------------------------------------------- /docs/create_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/create_as.md -------------------------------------------------------------------------------- /docs/create_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/create_index.md -------------------------------------------------------------------------------- /docs/create_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/create_table.md -------------------------------------------------------------------------------- /docs/defining_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/defining_tables.md -------------------------------------------------------------------------------- /docs/delete_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/delete_from.md -------------------------------------------------------------------------------- /docs/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/drop.md -------------------------------------------------------------------------------- /docs/duckdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/duckdb.md -------------------------------------------------------------------------------- /docs/dynamic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/dynamic.md -------------------------------------------------------------------------------- /docs/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/enum.md -------------------------------------------------------------------------------- /docs/exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/exec.md -------------------------------------------------------------------------------- /docs/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/flatten.md -------------------------------------------------------------------------------- /docs/foreign_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/foreign_key.md -------------------------------------------------------------------------------- /docs/group_by_and_aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/group_by_and_aggregations.md -------------------------------------------------------------------------------- /docs/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/insert.md -------------------------------------------------------------------------------- /docs/joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/joins.md -------------------------------------------------------------------------------- /docs/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/json.md -------------------------------------------------------------------------------- /docs/literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/literals.md -------------------------------------------------------------------------------- /docs/mathematical_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/mathematical_operations.md -------------------------------------------------------------------------------- /docs/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/mysql.md -------------------------------------------------------------------------------- /docs/null_handling_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/null_handling_operations.md -------------------------------------------------------------------------------- /docs/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/pattern.md -------------------------------------------------------------------------------- /docs/postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/postgres.md -------------------------------------------------------------------------------- /docs/primary_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/primary_key.md -------------------------------------------------------------------------------- /docs/reading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/reading.md -------------------------------------------------------------------------------- /docs/result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/result.md -------------------------------------------------------------------------------- /docs/select_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/select_from.md -------------------------------------------------------------------------------- /docs/sqlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/sqlite.md -------------------------------------------------------------------------------- /docs/string_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/string_operations.md -------------------------------------------------------------------------------- /docs/timestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/timestamp.md -------------------------------------------------------------------------------- /docs/timestamp_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/timestamp_operations.md -------------------------------------------------------------------------------- /docs/to_sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/to_sql.md -------------------------------------------------------------------------------- /docs/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/transactions.md -------------------------------------------------------------------------------- /docs/type_conversion_operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/type_conversion_operations.md -------------------------------------------------------------------------------- /docs/unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/unique.md -------------------------------------------------------------------------------- /docs/unite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/unite.md -------------------------------------------------------------------------------- /docs/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/update.md -------------------------------------------------------------------------------- /docs/varchar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/varchar.md -------------------------------------------------------------------------------- /docs/views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/views.md -------------------------------------------------------------------------------- /docs/writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/docs/writing.md -------------------------------------------------------------------------------- /include/sqlgen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen.hpp -------------------------------------------------------------------------------- /include/sqlgen/ConnectionPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/ConnectionPool.hpp -------------------------------------------------------------------------------- /include/sqlgen/Flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Flatten.hpp -------------------------------------------------------------------------------- /include/sqlgen/ForeignKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/ForeignKey.hpp -------------------------------------------------------------------------------- /include/sqlgen/Iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Iterator.hpp -------------------------------------------------------------------------------- /include/sqlgen/JSON.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/JSON.hpp -------------------------------------------------------------------------------- /include/sqlgen/Literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Literal.hpp -------------------------------------------------------------------------------- /include/sqlgen/Pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Pattern.hpp -------------------------------------------------------------------------------- /include/sqlgen/PrimaryKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/PrimaryKey.hpp -------------------------------------------------------------------------------- /include/sqlgen/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Range.hpp -------------------------------------------------------------------------------- /include/sqlgen/Ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Ref.hpp -------------------------------------------------------------------------------- /include/sqlgen/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Result.hpp -------------------------------------------------------------------------------- /include/sqlgen/Session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Session.hpp -------------------------------------------------------------------------------- /include/sqlgen/Timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Timestamp.hpp -------------------------------------------------------------------------------- /include/sqlgen/Transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Transaction.hpp -------------------------------------------------------------------------------- /include/sqlgen/Unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Unique.hpp -------------------------------------------------------------------------------- /include/sqlgen/Varchar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/Varchar.hpp -------------------------------------------------------------------------------- /include/sqlgen/aggregations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/aggregations.hpp -------------------------------------------------------------------------------- /include/sqlgen/as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/as.hpp -------------------------------------------------------------------------------- /include/sqlgen/begin_transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/begin_transaction.hpp -------------------------------------------------------------------------------- /include/sqlgen/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/cache.hpp -------------------------------------------------------------------------------- /include/sqlgen/cascade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/cascade.hpp -------------------------------------------------------------------------------- /include/sqlgen/col.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/col.hpp -------------------------------------------------------------------------------- /include/sqlgen/commit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/commit.hpp -------------------------------------------------------------------------------- /include/sqlgen/create_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/create_as.hpp -------------------------------------------------------------------------------- /include/sqlgen/create_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/create_index.hpp -------------------------------------------------------------------------------- /include/sqlgen/create_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/create_table.hpp -------------------------------------------------------------------------------- /include/sqlgen/delete_from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/delete_from.hpp -------------------------------------------------------------------------------- /include/sqlgen/drop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/drop.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/ColumnData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/ColumnData.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/Connection.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/DuckDBAppender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/DuckDBAppender.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/DuckDBConnection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/DuckDBConnection.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/DuckDBResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/DuckDBResult.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/Iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/Iterator.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/cast_duckdb_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/cast_duckdb_type.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/check_duckdb_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/check_duckdb_type.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/chunk_ptrs_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/chunk_ptrs_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/connect.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/from_chunk_ptrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/from_chunk_ptrs.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/make_chunk_ptrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/make_chunk_ptrs.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_base.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_date.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_date.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_default.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_enum.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_json.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_optional.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_reflection_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_reflection_type.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_smart_ptr.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_string.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/parsing/Parser_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/parsing/Parser_timestamp.hpp -------------------------------------------------------------------------------- /include/sqlgen/duckdb/to_sql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/duckdb/to_sql.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Aggregation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Aggregation.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Column.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/ColumnOrAggregation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/ColumnOrAggregation.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/ColumnOrValue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/ColumnOrValue.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Condition.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/CreateAs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/CreateAs.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/CreateIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/CreateIndex.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/CreateTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/CreateTable.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/DeleteFrom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/DeleteFrom.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Drop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Drop.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/GroupBy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/GroupBy.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Insert.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Join.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/JoinType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/JoinType.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Limit.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Offset.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Operation.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/OrderBy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/OrderBy.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/SelectFrom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/SelectFrom.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Statement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Statement.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Table.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/TableOrView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/TableOrView.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/TimeUnit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/TimeUnit.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Type.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Union.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Update.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Value.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/Write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/Write.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/create_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/create_table.hpp -------------------------------------------------------------------------------- /include/sqlgen/dynamic/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/dynamic/types.hpp -------------------------------------------------------------------------------- /include/sqlgen/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/exec.hpp -------------------------------------------------------------------------------- /include/sqlgen/group_by.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/group_by.hpp -------------------------------------------------------------------------------- /include/sqlgen/if_exists.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/if_exists.hpp -------------------------------------------------------------------------------- /include/sqlgen/if_not_exists.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/if_not_exists.hpp -------------------------------------------------------------------------------- /include/sqlgen/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/insert.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/GetColType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/GetColType.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/MockTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/MockTable.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/all_same_v.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/all_same_v.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/batch_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/batch_size.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/call_destructors_where_necessary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/call_destructors_where_necessary.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/collect/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/collect/vector.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/from_str_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/from_str_vec.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/has_constraint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/has_constraint.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/has_primary_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/has_primary_key.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/has_unique_column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/has_unique_column.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/is_constraint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/is_constraint.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/is_primary_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/is_primary_key.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/is_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/is_range.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/is_unique_column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/is_unique_column.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/iterator_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/iterator_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/query_value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/query_value_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/random.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/remove_auto_incr_primary_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/remove_auto_incr_primary_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/strings/strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/strings/strings.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/to_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/to_container.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/to_str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/to_str.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/to_str_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/to_str_vec.hpp -------------------------------------------------------------------------------- /include/sqlgen/internal/write_or_insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/internal/write_or_insert.hpp -------------------------------------------------------------------------------- /include/sqlgen/is_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/is_connection.hpp -------------------------------------------------------------------------------- /include/sqlgen/joins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/joins.hpp -------------------------------------------------------------------------------- /include/sqlgen/limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/limit.hpp -------------------------------------------------------------------------------- /include/sqlgen/literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/literals.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/Connection.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/Credentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/Credentials.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/Iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/Iterator.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/connect.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/exec.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/make_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/make_error.hpp -------------------------------------------------------------------------------- /include/sqlgen/mysql/to_sql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/mysql/to_sql.hpp -------------------------------------------------------------------------------- /include/sqlgen/offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/offset.hpp -------------------------------------------------------------------------------- /include/sqlgen/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/operations.hpp -------------------------------------------------------------------------------- /include/sqlgen/order_by.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/order_by.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_base.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_default.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_foreign_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_foreign_key.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_json.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_optional.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_primary_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_primary_key.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_shared_ptr.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_string.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_timestamp.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_unique.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_unique_ptr.hpp -------------------------------------------------------------------------------- /include/sqlgen/parsing/Parser_varchar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/parsing/Parser_varchar.hpp -------------------------------------------------------------------------------- /include/sqlgen/patterns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/patterns.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/Connection.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/Credentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/Credentials.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/Iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/Iterator.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/PostgresV2Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/PostgresV2Connection.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/PostgresV2Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/PostgresV2Result.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/connect.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/exec.hpp -------------------------------------------------------------------------------- /include/sqlgen/postgres/to_sql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/postgres/to_sql.hpp -------------------------------------------------------------------------------- /include/sqlgen/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/read.hpp -------------------------------------------------------------------------------- /include/sqlgen/rollback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/rollback.hpp -------------------------------------------------------------------------------- /include/sqlgen/select_from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/select_from.hpp -------------------------------------------------------------------------------- /include/sqlgen/sqlgen_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/sqlgen_api.hpp -------------------------------------------------------------------------------- /include/sqlgen/sqlite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/sqlite.hpp -------------------------------------------------------------------------------- /include/sqlgen/sqlite/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/sqlite/Connection.hpp -------------------------------------------------------------------------------- /include/sqlgen/sqlite/Iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/sqlite/Iterator.hpp -------------------------------------------------------------------------------- /include/sqlgen/sqlite/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/sqlite/connect.hpp -------------------------------------------------------------------------------- /include/sqlgen/sqlite/to_sql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/sqlite/to_sql.hpp -------------------------------------------------------------------------------- /include/sqlgen/to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/to.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Aggregation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Aggregation.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/AggregationOp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/AggregationOp.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/As.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/As.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Col.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Col.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Condition.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Desc.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Join.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Limit.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Offset.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Operation.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Operator.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/OperatorCategory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/OperatorCategory.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Set.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/TableWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/TableWrapper.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Union.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/Value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/Value.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/all_columns_exist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/all_columns_exist.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/check_aggregations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/check_aggregations.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/columns_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/columns_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/conditions.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/dynamic_aggregation_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/dynamic_aggregation_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/dynamic_operator_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/dynamic_operator_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/extract_table_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/extract_table_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/fields_to_named_tuple_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/fields_to_named_tuple_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/flatten_fields_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/flatten_fields_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/get_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/get_schema.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/get_table_or_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/get_table_or_view.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/get_table_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/get_table_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/get_tablename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/get_tablename.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/group_by_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/group_by_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/has_reflection_method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/has_reflection_method.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/has_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/has_schema.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/is_duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/is_duration.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/is_nullable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/is_nullable.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/is_primary_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/is_primary_key.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/is_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/is_timestamp.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/make_columns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/make_columns.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/make_field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/make_field.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/make_fields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/make_fields.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/order_by_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/order_by_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/read_to_select_from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/read_to_select_from.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/remove_as_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/remove_as_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/remove_nullable_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/remove_nullable_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/remove_reflection_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/remove_reflection_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/string_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/string_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/table_tuple_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/table_tuple_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_alias.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_condition.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_create_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_create_as.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_create_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_create_index.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_create_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_create_table.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_delete_from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_delete_from.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_drop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_drop.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_duration.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_group_by.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_group_by.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_insert_or_write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_insert_or_write.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_joins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_joins.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_limit.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_offset.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_order_by.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_order_by.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_select_from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_select_from.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_sets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_sets.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_sql.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_sql.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_table_or_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_table_or_query.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_transpilation_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_transpilation_type.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_union.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_update.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/to_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/to_value.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/underlying_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/underlying_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/value_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/transpilation/wrap_in_optional_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/transpilation/wrap_in_optional_t.hpp -------------------------------------------------------------------------------- /include/sqlgen/unite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/unite.hpp -------------------------------------------------------------------------------- /include/sqlgen/update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/update.hpp -------------------------------------------------------------------------------- /include/sqlgen/where.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/where.hpp -------------------------------------------------------------------------------- /include/sqlgen/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/include/sqlgen/write.hpp -------------------------------------------------------------------------------- /sqlgen-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/sqlgen-config.cmake.in -------------------------------------------------------------------------------- /src/sqlgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen.cpp -------------------------------------------------------------------------------- /src/sqlgen/duckdb/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/duckdb/Connection.cpp -------------------------------------------------------------------------------- /src/sqlgen/duckdb/DuckDBAppender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/duckdb/DuckDBAppender.cpp -------------------------------------------------------------------------------- /src/sqlgen/duckdb/DuckDBConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/duckdb/DuckDBConnection.cpp -------------------------------------------------------------------------------- /src/sqlgen/duckdb/DuckDBResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/duckdb/DuckDBResult.cpp -------------------------------------------------------------------------------- /src/sqlgen/duckdb/to_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/duckdb/to_sql.cpp -------------------------------------------------------------------------------- /src/sqlgen/internal/strings/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/internal/strings/strings.cpp -------------------------------------------------------------------------------- /src/sqlgen/mysql/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/mysql/Connection.cpp -------------------------------------------------------------------------------- /src/sqlgen/mysql/Iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/mysql/Iterator.cpp -------------------------------------------------------------------------------- /src/sqlgen/mysql/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/mysql/exec.cpp -------------------------------------------------------------------------------- /src/sqlgen/mysql/to_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/mysql/to_sql.cpp -------------------------------------------------------------------------------- /src/sqlgen/postgres/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/postgres/Connection.cpp -------------------------------------------------------------------------------- /src/sqlgen/postgres/Iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/postgres/Iterator.cpp -------------------------------------------------------------------------------- /src/sqlgen/postgres/PostgresV2Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/postgres/PostgresV2Connection.cpp -------------------------------------------------------------------------------- /src/sqlgen/postgres/PostgresV2Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/postgres/PostgresV2Result.cpp -------------------------------------------------------------------------------- /src/sqlgen/postgres/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/postgres/exec.cpp -------------------------------------------------------------------------------- /src/sqlgen/postgres/to_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/postgres/to_sql.cpp -------------------------------------------------------------------------------- /src/sqlgen/sqlite/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/sqlite/Connection.cpp -------------------------------------------------------------------------------- /src/sqlgen/sqlite/Iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/sqlite/Iterator.cpp -------------------------------------------------------------------------------- /src/sqlgen/sqlite/to_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen/sqlite/to_sql.cpp -------------------------------------------------------------------------------- /src/sqlgen_duckdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen_duckdb.cpp -------------------------------------------------------------------------------- /src/sqlgen_mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen_mysql.cpp -------------------------------------------------------------------------------- /src/sqlgen_postgres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen_postgres.cpp -------------------------------------------------------------------------------- /src/sqlgen_sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/src/sqlgen_sqlite.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/duckdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/CMakeLists.txt -------------------------------------------------------------------------------- /tests/duckdb/test_aggregations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_aggregations.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_aggregations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_aggregations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_alpha_numeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_alpha_numeric.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_alpha_numeric_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_alpha_numeric_query.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_auto_incr_primary_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_auto_incr_primary_key.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_boolean.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_boolean_conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_boolean_conditions.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_boolean_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_boolean_update.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_cache.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_create_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_create_index.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_create_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_create_table.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_create_table_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_create_table_as.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_create_view_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_create_view_as.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_delete_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_delete_from.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_drop.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_dynamic_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_dynamic_type.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_enum_crosstable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_enum_crosstable.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_enum_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_enum_lookup.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_enum_namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_enum_namespace.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_flatten.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_foreign_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_foreign_key.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_full_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_full_join.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_group_by.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_group_by.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_group_by_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_group_by_with_operations.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_hello_world.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_in.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_in_vec.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_insert_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_insert_and_read.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_insert_by_ref_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_insert_by_ref_and_read.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_insert_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_insert_fail.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_insert_or_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_insert_or_replace.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_is_null.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_join.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_joins_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_joins_from.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_joins_nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_joins_nested.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_joins_nested_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_joins_nested_grouped.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_joins_two_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_joins_two_tables.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_joins_two_tables_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_joins_two_tables_grouped.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_json.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_left_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_left_join.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_like.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_like.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_limit.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_not_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_not_in.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_not_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_not_in_vec.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_offset.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_operations.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_operations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_operations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_order_by.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_order_by.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_range.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_range_select_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_range_select_from.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_range_select_from_with_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_range_select_from_with_to.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_right_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_right_join.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_select_from_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_select_from_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_single_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_single_read.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_timestamp.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_to_create_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_to_create_table.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_to_insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_to_insert.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_to_insert_or_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_to_insert_or_replace.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_to_select_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_to_select_from.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_to_select_from_with_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_to_select_from_with_schema.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_transaction.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_union.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_union_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_union_all.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_union_in_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_union_in_join.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_union_in_join2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_union_in_join2.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_union_in_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_union_in_select.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_unique.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_update.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_varchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_varchar.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_where.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_where_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_where_with_nullable.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_where_with_nullable_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_where_with_nullable_operations.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_where_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_where_with_operations.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_where_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_where_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_write_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_write_and_read.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_write_and_read_curried.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_write_and_read_curried.cpp -------------------------------------------------------------------------------- /tests/duckdb/test_write_and_read_to_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/duckdb/test_write_and_read_to_file.cpp -------------------------------------------------------------------------------- /tests/mysql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/CMakeLists.txt -------------------------------------------------------------------------------- /tests/mysql/test_aggregations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_aggregations.cpp -------------------------------------------------------------------------------- /tests/mysql/test_aggregations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_aggregations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/mysql/test_auto_incr_primary_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_auto_incr_primary_key.cpp -------------------------------------------------------------------------------- /tests/mysql/test_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_boolean.cpp -------------------------------------------------------------------------------- /tests/mysql/test_boolean_conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_boolean_conditions.cpp -------------------------------------------------------------------------------- /tests/mysql/test_boolean_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_boolean_update.cpp -------------------------------------------------------------------------------- /tests/mysql/test_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_cache.cpp -------------------------------------------------------------------------------- /tests/mysql/test_create_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_create_index.cpp -------------------------------------------------------------------------------- /tests/mysql/test_create_index_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_create_index_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_create_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_create_table.cpp -------------------------------------------------------------------------------- /tests/mysql/test_create_table_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_create_table_as.cpp -------------------------------------------------------------------------------- /tests/mysql/test_create_table_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_create_table_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_create_view_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_create_view_as.cpp -------------------------------------------------------------------------------- /tests/mysql/test_delete_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_delete_from.cpp -------------------------------------------------------------------------------- /tests/mysql/test_delete_from_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_delete_from_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_drop_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_drop_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_dynamic_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_dynamic_type.cpp -------------------------------------------------------------------------------- /tests/mysql/test_enum_crosstable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_enum_crosstable.cpp -------------------------------------------------------------------------------- /tests/mysql/test_enum_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_enum_lookup.cpp -------------------------------------------------------------------------------- /tests/mysql/test_enum_namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_enum_namespace.cpp -------------------------------------------------------------------------------- /tests/mysql/test_foreign_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_foreign_key.cpp -------------------------------------------------------------------------------- /tests/mysql/test_group_by.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_group_by.cpp -------------------------------------------------------------------------------- /tests/mysql/test_group_by_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_group_by_with_operations.cpp -------------------------------------------------------------------------------- /tests/mysql/test_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_in.cpp -------------------------------------------------------------------------------- /tests/mysql/test_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_in_vec.cpp -------------------------------------------------------------------------------- /tests/mysql/test_insert_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_insert_and_read.cpp -------------------------------------------------------------------------------- /tests/mysql/test_insert_and_read_two_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_insert_and_read_two_tables.cpp -------------------------------------------------------------------------------- /tests/mysql/test_insert_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_insert_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_insert_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_insert_fail.cpp -------------------------------------------------------------------------------- /tests/mysql/test_insert_or_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_insert_or_replace.cpp -------------------------------------------------------------------------------- /tests/mysql/test_is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_is_null.cpp -------------------------------------------------------------------------------- /tests/mysql/test_is_null_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_is_null_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_join.cpp -------------------------------------------------------------------------------- /tests/mysql/test_joins_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_joins_from.cpp -------------------------------------------------------------------------------- /tests/mysql/test_joins_nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_joins_nested.cpp -------------------------------------------------------------------------------- /tests/mysql/test_joins_nested_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_joins_nested_grouped.cpp -------------------------------------------------------------------------------- /tests/mysql/test_joins_two_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_joins_two_tables.cpp -------------------------------------------------------------------------------- /tests/mysql/test_joins_two_tables_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_joins_two_tables_grouped.cpp -------------------------------------------------------------------------------- /tests/mysql/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_json.cpp -------------------------------------------------------------------------------- /tests/mysql/test_left_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_left_join.cpp -------------------------------------------------------------------------------- /tests/mysql/test_like.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_like.cpp -------------------------------------------------------------------------------- /tests/mysql/test_like_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_like_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_limit.cpp -------------------------------------------------------------------------------- /tests/mysql/test_not_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_not_in.cpp -------------------------------------------------------------------------------- /tests/mysql/test_not_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_not_in_vec.cpp -------------------------------------------------------------------------------- /tests/mysql/test_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_offset.cpp -------------------------------------------------------------------------------- /tests/mysql/test_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_operations.cpp -------------------------------------------------------------------------------- /tests/mysql/test_operations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_operations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/mysql/test_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_range.cpp -------------------------------------------------------------------------------- /tests/mysql/test_range_select_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_range_select_from.cpp -------------------------------------------------------------------------------- /tests/mysql/test_right_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_right_join.cpp -------------------------------------------------------------------------------- /tests/mysql/test_select_from_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_select_from_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/mysql/test_select_from_with_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_select_from_with_to.cpp -------------------------------------------------------------------------------- /tests/mysql/test_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_timestamp.cpp -------------------------------------------------------------------------------- /tests/mysql/test_timestamp_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_timestamp_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_to_insert_or_replace_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_to_insert_or_replace_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_to_select_from2_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_to_select_from2_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_to_select_from_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_to_select_from_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_to_select_from_with_schema_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_to_select_from_with_schema_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_transaction.cpp -------------------------------------------------------------------------------- /tests/mysql/test_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_union.cpp -------------------------------------------------------------------------------- /tests/mysql/test_union_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_union_all.cpp -------------------------------------------------------------------------------- /tests/mysql/test_union_in_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_union_in_join.cpp -------------------------------------------------------------------------------- /tests/mysql/test_union_in_join2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_union_in_join2.cpp -------------------------------------------------------------------------------- /tests/mysql/test_union_in_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_union_in_select.cpp -------------------------------------------------------------------------------- /tests/mysql/test_unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_unique.cpp -------------------------------------------------------------------------------- /tests/mysql/test_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_update.cpp -------------------------------------------------------------------------------- /tests/mysql/test_update_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_update_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_varchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_varchar.cpp -------------------------------------------------------------------------------- /tests/mysql/test_where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_where.cpp -------------------------------------------------------------------------------- /tests/mysql/test_where_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_where_dry.cpp -------------------------------------------------------------------------------- /tests/mysql/test_where_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_where_with_operations.cpp -------------------------------------------------------------------------------- /tests/mysql/test_where_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_where_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/mysql/test_write_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_write_and_read.cpp -------------------------------------------------------------------------------- /tests/mysql/test_write_and_read_curried.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_write_and_read_curried.cpp -------------------------------------------------------------------------------- /tests/mysql/test_write_and_read_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/mysql/test_write_and_read_pool.cpp -------------------------------------------------------------------------------- /tests/postgres/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/CMakeLists.txt -------------------------------------------------------------------------------- /tests/postgres/test_aggregations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_aggregations.cpp -------------------------------------------------------------------------------- /tests/postgres/test_aggregations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_aggregations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/postgres/test_auto_incr_primary_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_auto_incr_primary_key.cpp -------------------------------------------------------------------------------- /tests/postgres/test_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_boolean.cpp -------------------------------------------------------------------------------- /tests/postgres/test_boolean_conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_boolean_conditions.cpp -------------------------------------------------------------------------------- /tests/postgres/test_boolean_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_boolean_update.cpp -------------------------------------------------------------------------------- /tests/postgres/test_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_cache.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_index.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_index_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_index_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_index_where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_index_where.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_index_where_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_index_where_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_table.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_table_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_table_as.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_table_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_table_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_create_view_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_create_view_as.cpp -------------------------------------------------------------------------------- /tests/postgres/test_delete_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_delete_from.cpp -------------------------------------------------------------------------------- /tests/postgres/test_delete_from_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_delete_from_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_drop_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_drop_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_dynamic_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_dynamic_type.cpp -------------------------------------------------------------------------------- /tests/postgres/test_enum_crosstable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_enum_crosstable.cpp -------------------------------------------------------------------------------- /tests/postgres/test_enum_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_enum_lookup.cpp -------------------------------------------------------------------------------- /tests/postgres/test_enum_namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_enum_namespace.cpp -------------------------------------------------------------------------------- /tests/postgres/test_foreign_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_foreign_key.cpp -------------------------------------------------------------------------------- /tests/postgres/test_full_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_full_join.cpp -------------------------------------------------------------------------------- /tests/postgres/test_group_by.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_group_by.cpp -------------------------------------------------------------------------------- /tests/postgres/test_group_by_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_group_by_with_operations.cpp -------------------------------------------------------------------------------- /tests/postgres/test_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_in.cpp -------------------------------------------------------------------------------- /tests/postgres/test_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_in_vec.cpp -------------------------------------------------------------------------------- /tests/postgres/test_insert_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_insert_and_read.cpp -------------------------------------------------------------------------------- /tests/postgres/test_insert_and_read_two_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_insert_and_read_two_tables.cpp -------------------------------------------------------------------------------- /tests/postgres/test_insert_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_insert_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_insert_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_insert_fail.cpp -------------------------------------------------------------------------------- /tests/postgres/test_insert_or_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_insert_or_replace.cpp -------------------------------------------------------------------------------- /tests/postgres/test_is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_is_null.cpp -------------------------------------------------------------------------------- /tests/postgres/test_is_null_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_is_null_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_join.cpp -------------------------------------------------------------------------------- /tests/postgres/test_joins_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_joins_from.cpp -------------------------------------------------------------------------------- /tests/postgres/test_joins_nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_joins_nested.cpp -------------------------------------------------------------------------------- /tests/postgres/test_joins_nested_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_joins_nested_grouped.cpp -------------------------------------------------------------------------------- /tests/postgres/test_joins_two_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_joins_two_tables.cpp -------------------------------------------------------------------------------- /tests/postgres/test_joins_two_tables_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_joins_two_tables_grouped.cpp -------------------------------------------------------------------------------- /tests/postgres/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_json.cpp -------------------------------------------------------------------------------- /tests/postgres/test_left_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_left_join.cpp -------------------------------------------------------------------------------- /tests/postgres/test_like.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_like.cpp -------------------------------------------------------------------------------- /tests/postgres/test_like_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_like_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_limit.cpp -------------------------------------------------------------------------------- /tests/postgres/test_not_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_not_in.cpp -------------------------------------------------------------------------------- /tests/postgres/test_not_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_not_in_vec.cpp -------------------------------------------------------------------------------- /tests/postgres/test_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_offset.cpp -------------------------------------------------------------------------------- /tests/postgres/test_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_operations.cpp -------------------------------------------------------------------------------- /tests/postgres/test_operations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_operations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/postgres/test_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_range.cpp -------------------------------------------------------------------------------- /tests/postgres/test_range_select_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_range_select_from.cpp -------------------------------------------------------------------------------- /tests/postgres/test_read_to_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_read_to_sql.cpp -------------------------------------------------------------------------------- /tests/postgres/test_right_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_right_join.cpp -------------------------------------------------------------------------------- /tests/postgres/test_select_from_with_sessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_select_from_with_sessions.cpp -------------------------------------------------------------------------------- /tests/postgres/test_select_from_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_select_from_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/postgres/test_select_from_with_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_select_from_with_to.cpp -------------------------------------------------------------------------------- /tests/postgres/test_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_timestamp.cpp -------------------------------------------------------------------------------- /tests/postgres/test_timestamp_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_timestamp_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_timestamp_with_tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_timestamp_with_tz.cpp -------------------------------------------------------------------------------- /tests/postgres/test_timestamp_with_tz_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_timestamp_with_tz_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_to_insert_or_replace_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_to_insert_or_replace_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_to_select_from2_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_to_select_from2_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_to_select_from_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_to_select_from_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_to_select_from_with_schema_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_to_select_from_with_schema_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_transaction.cpp -------------------------------------------------------------------------------- /tests/postgres/test_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_union.cpp -------------------------------------------------------------------------------- /tests/postgres/test_union_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_union_all.cpp -------------------------------------------------------------------------------- /tests/postgres/test_union_in_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_union_in_join.cpp -------------------------------------------------------------------------------- /tests/postgres/test_union_in_join2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_union_in_join2.cpp -------------------------------------------------------------------------------- /tests/postgres/test_union_in_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_union_in_select.cpp -------------------------------------------------------------------------------- /tests/postgres/test_unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_unique.cpp -------------------------------------------------------------------------------- /tests/postgres/test_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_update.cpp -------------------------------------------------------------------------------- /tests/postgres/test_update_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_update_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_varchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_varchar.cpp -------------------------------------------------------------------------------- /tests/postgres/test_where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_where.cpp -------------------------------------------------------------------------------- /tests/postgres/test_where_dry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_where_dry.cpp -------------------------------------------------------------------------------- /tests/postgres/test_where_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_where_with_operations.cpp -------------------------------------------------------------------------------- /tests/postgres/test_where_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_where_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/postgres/test_write_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_write_and_read.cpp -------------------------------------------------------------------------------- /tests/postgres/test_write_and_read_curried.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_write_and_read_curried.cpp -------------------------------------------------------------------------------- /tests/postgres/test_write_and_read_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/postgres/test_write_and_read_pool.cpp -------------------------------------------------------------------------------- /tests/sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /tests/sqlite/test_aggregations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_aggregations.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_aggregations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_aggregations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_alpha_numeric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_alpha_numeric.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_alpha_numeric_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_alpha_numeric_query.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_auto_incr_primary_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_auto_incr_primary_key.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_boolean.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_boolean_conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_boolean_conditions.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_boolean_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_boolean_update.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_cache.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_create_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_create_index.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_create_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_create_table.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_create_table_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_create_table_as.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_create_view_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_create_view_as.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_delete_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_delete_from.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_drop.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_dynamic_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_dynamic_type.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_enum_crosstable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_enum_crosstable.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_enum_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_enum_lookup.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_enum_namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_enum_namespace.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_flatten.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_foreign_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_foreign_key.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_full_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_full_join.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_group_by.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_group_by.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_group_by_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_group_by_with_operations.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_hello_world.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_in.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_in_vec.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_insert_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_insert_and_read.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_insert_by_ref_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_insert_by_ref_and_read.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_insert_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_insert_fail.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_insert_or_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_insert_or_replace.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_is_null.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_join.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_joins_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_joins_from.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_joins_nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_joins_nested.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_joins_nested_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_joins_nested_grouped.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_joins_two_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_joins_two_tables.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_joins_two_tables_grouped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_joins_two_tables_grouped.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_json.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_left_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_left_join.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_like.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_like.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_limit.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_not_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_not_in.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_not_in_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_not_in_vec.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_offset.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_operations.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_operations_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_operations_with_nullable.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_order_by.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_order_by.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_range.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_range_select_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_range_select_from.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_range_select_from_with_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_range_select_from_with_to.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_right_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_right_join.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_select_from_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_select_from_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_single_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_single_read.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_timestamp.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_to_create_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_to_create_table.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_to_insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_to_insert.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_to_insert_or_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_to_insert_or_replace.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_to_select_from.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_to_select_from.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_to_select_from_with_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_to_select_from_with_schema.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_transaction.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_union.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_union_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_union_all.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_union_in_join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_union_in_join.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_union_in_join2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_union_in_join2.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_union_in_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_union_in_select.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_unique.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_update.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_varchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_varchar.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_where.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_where_with_nullable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_where_with_nullable.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_where_with_nullable_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_where_with_nullable_operations.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_where_with_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_where_with_operations.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_where_with_timestamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_where_with_timestamps.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_write_and_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_write_and_read.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_write_and_read_curried.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_write_and_read_curried.cpp -------------------------------------------------------------------------------- /tests/sqlite/test_write_and_read_to_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/tests/sqlite/test_write_and_read_to_file.cpp -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getml/sqlgen/HEAD/vcpkg.json --------------------------------------------------------------------------------