[Tile-serving] [openstreetmap/osm2pgsql] Flex: Add support for configuring table indexes in the Lua config (PR #1847)
Jochen Topf
notifications at github.com
Wed Dec 7 19:21:46 UTC 2022
@joto commented on this pull request.
> +#include <string>
+#include <vector>
+
+/**
+ * This class represents a database index.
+ */
+class flex_index_t
+{
+public:
+ explicit flex_index_t(std::string method) : m_method(std::move(method)) {}
+
+ std::string const &method() const noexcept { return m_method; }
+
+ std::string columns() const;
+
+ void set_columns(std::string const &columns)
I added an assert.
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/osm2pgsql/pull/1847#discussion_r1042593008
You are receiving this because you are subscribed to this thread.
Message ID: <openstreetmap/osm2pgsql/pull/1847/review/1208989314 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/tile-serving/attachments/20221207/ae3d3405/attachment.htm>
More information about the Tile-serving
mailing list