added postgres backend
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#ifndef QUERY_POSTGRES_DIALECT_HPP
|
||||
#define QUERY_POSTGRES_DIALECT_HPP
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#ifdef matador_postgres_EXPORTS
|
||||
#define MATADOR_POSTGRES_API __declspec(dllexport)
|
||||
#else
|
||||
#define MATADOR_POSTGRES_API __declspec(dllimport)
|
||||
#endif
|
||||
#pragma warning(disable: 4355)
|
||||
#else
|
||||
#define MATADOR_POSTGRES_API
|
||||
#endif
|
||||
|
||||
#include "matador/sql/dialect.hpp"
|
||||
|
||||
extern "C" [[maybe_unused]] MATADOR_POSTGRES_API const matador::sql::dialect* get_dialect();
|
||||
|
||||
#endif //QUERY_POSTGRES_DIALECT_HPP
|
||||
Reference in New Issue
Block a user