This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var VERSION = "0.13.2+dev"; | |
var record tl { | |
enum LoadMode { | |
"b", | |
"t", | |
"bt", | |
}; | |
type LoadFunction = function(...:any): any...; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
/*#define YYDEBUG 1*/ | |
/*------------------------------------------------------------------------- | |
* | |
* gram.y | |
* POSTGRESQL BISON rules/actions | |
* | |
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group | |
* Portions Copyright (c) 1994, Regents of the University of California |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#expect an ordered list of backup files in bkpList.txt | |
#for an example dowload indent backup files with "wget -nc -i bkpListSrc.txt" | |
bkp_ext=".tar.gz" | |
git_folder=src | |
if [[ ! -e $git_folder ]] | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lj_parse.c | |
+++ lj_parse.c | |
@@ -25,6 +25,8 @@ | |
#include "lj_parse.h" | |
#include "lj_vm.h" | |
#include "lj_vmevent.h" | |
+ | |
+#include <stdio.h> | |
/* -- Parser structures and definitions ----------------------------------- */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lj_parse.c | |
+++ lj_parse.c | |
@@ -27,6 +27,8 @@ | |
#include "lj_parse.h" | |
#include "lj_vm.h" | |
#include "lj_vmevent.h" | |
+ | |
+#include <stdio.h> | |
/* -- Parser structures and definitions ----------------------------------- */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lparser.c | |
+++ lparser.c | |
@@ -11,6 +11,7 @@ | |
#include <string.h> | |
+#include <stdio.h> | |
#include "lua.h" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lparser.c | |
+++ lparser.c | |
@@ -11,6 +11,7 @@ | |
#include <string.h> | |
+#include <stdio.h> | |
#include "lua.h" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lparser.c | |
+++ lparser.c | |
@@ -6,6 +6,7 @@ | |
#include <string.h> | |
+#include <stdio.h> | |
#define lparser_c | |
#define LUA_CORE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lparser.c 2018-11-30 11:47:05.053864317 +0100 | |
+++ lparser.c 2018-12-27 09:28:55.536952662 +0100 | |
@@ -6,6 +6,7 @@ | |
#include <string.h> | |
+#include <stdio.h> | |
#define lparser_c | |
#define LUA_CORE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: ext/fts5/fts5Int.h | |
================================================================== | |
--- ext/fts5/fts5Int.h | |
+++ ext/fts5/fts5Int.h | |
@@ -160,10 +160,11 @@ | |
char *zDb; /* Database holding FTS index (e.g. "main") */ | |
char *zName; /* Name of FTS index */ | |
int nCol; /* Number of columns */ | |
char **azCol; /* Column names */ | |
u8 *abUnindexed; /* True for unindexed columns */ |
NewerOlder