博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pl/proxy-2.5安装在postgresql9.6上无法编译
阅读量:4078 次
发布时间:2019-05-25

本文共 1973 字,大约阅读时间需要 6 分钟。

在postgresql安装编译pl/ploxy-2.5报错
postgres@node2 plproxy-2.5]$ make
flex -osrc/scanner.c src/scanner.l
bison -b src/parser -d src/parser.y
gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -O2 -fpic -I/home/postgres/pgsql-9.6/include/server -I/home/postgres/pgsql-9.6/include -DNO_SELECT=0 -I. -I./ -I/home/postgres/pgsql-9.6/include/server -I/home/postgres/pgsql-9.6/include/internal -D_GNU_SOURCE   -c -o src/scanner.o src/scanner.c
gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -O2 -fpic -I/home/postgres/pgsql-9.6/include/server -I/home/postgres/pgsql-9.6/include -DNO_SELECT=0 -I. -I./ -I/home/postgres/pgsql-9.6/include/server -I/home/postgres/pgsql-9.6/include/internal -D_GNU_SOURCE   -c -o src/parser.tab.o src/parser.tab.c
gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -O2 -fpic -I/home/postgres/pgsql-9.6/include/server -I/home/postgres/pgsql-9.6/include -DNO_SELECT=0 -I. -I./ -I/home/postgres/pgsql-9.6/include/server -I/home/postgres/pgsql-9.6/include/internal -D_GNU_SOURCE   -c -o src/cluster.o src/cluster.c
src/cluster.c: In function ‘get_version’:
src/cluster.c:281: warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘uint64’
src/cluster.c: In function ‘get_userinfo’:
src/cluster.c:940: error: too few arguments to function ‘GetUserNameFromId’
src/cluster.c: In function ‘resolve_query’:
src/cluster.c:1117: warning: format ‘%d’ expects type ‘int’, but argument 4 has type ‘uint64’
gmake: *** [src/cluster.o] Error 1

本人之前在9.4和9.2上安装过没有出现问题,个人判断是pl/ploxy-2.5不支持pg9.6,需要自己改一下内容,我还没找到方法。pl/ploxy-2.5是2012年的东西了,也许久不更新了。如果想做pl/ploxy-2.5的实验,建议不要用pg9.6了

后经实验,pl/ploxy-2.5在pg9.5上编译的时候也是会出错的,错误和上述差不过。

转载地址:http://nbsni.baihongyu.com/

你可能感兴趣的文章
STM32下mavlink的使用个人总结(包含对ACfly里面mavlink的分析,包含接收T265的位置信息的二次开发教程)
查看>>
MAVLink通讯协议在STM32上移植,并自定义协议(这篇还写了在STM32上怎么收发数据,调用哪些函数)
查看>>
结构体在STM32串口接收中的妙用
查看>>
mavlink协议发送与接收--串口版(这篇也讲了STM32上面用哪些函数收发)
查看>>
MAVLink学习之路05_MAVLink应用编程接口分析(也有讲STM32下的收发函数)
查看>>
找到了中文版的mavlink手册
查看>>
浅谈飞控开发的仿真功能
查看>>
TBUS可能是我目前真正实际视频见到的室内无人机做得最优秀的。
查看>>
我看他们不是弄了一个无人机降落的算法,我觉得你解决一个无人机抗磁干扰的也可以发论文啊。
查看>>
TBUS的无人机为了提升拉力是用的上下两个电机的无人机。
查看>>
我觉得在室内弄无人机开发装个防撞机架还是很有必要的,TBUS就做得很好。
查看>>
serial也是见到很多次了,似乎它就是一种串行通信协议
查看>>
TBUS的一些信息
查看>>
PX4+激光雷达在gazebo中仿真实现(古月居)
查看>>
我感觉你要弄无人机+激光雷达,可以先在车子上实现,再放到无人机上应该很快。
查看>>
专业和业余的区别就在于你在基础在基本功打磨练习花的时间
查看>>
通过mavlink实现自主航线的过程笔记
查看>>
Ardupilot飞控Mavlink代码学习
查看>>
我发现我看到的无人驾驶车上的激光雷达外观差不多
查看>>
几种常见的校验算法
查看>>