We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2b8a0 commit 4d3ca8fCopy full SHA for 4d3ca8f
pgrx-pg-sys/src/submodules/sql_translatable.rs
@@ -45,6 +45,16 @@ unsafe impl SqlTranslatable for crate::IndexAmRoutine {
45
Ok(Returns::One(SqlMapping::literal("internal")))
46
}
47
48
+
49
+unsafe impl SqlTranslatable for crate::TableAmRoutine {
50
+ fn argument_sql() -> Result<SqlMapping, ArgumentError> {
51
+ Ok(SqlMapping::literal("internal"))
52
+ }
53
+ fn return_sql() -> Result<Returns, ReturnsError> {
54
+ Ok(Returns::One(SqlMapping::literal("internal")))
55
56
+}
57
58
unsafe impl SqlTranslatable for crate::FdwRoutine {
59
fn argument_sql() -> Result<SqlMapping, ArgumentError> {
60
Ok(SqlMapping::literal("fdw_handler"))
0 commit comments