-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmysql_sphere.sublime-workspace
2531 lines (2531 loc) · 53.1 KB
/
mysql_sphere.sublime-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"auto_complete":
{
"selected_items":
[
[
"MYSQL_SPHERE",
"MYSQL_SPHERE_LINE"
],
[
"type",
"type_names"
],
[
"spherepol",
"spherepoly_add_point"
],
[
"agg",
"aggregateBuff"
],
[
"sphereT",
"sphereTypesFound"
],
[
"MYSQL_",
"MYSQL_SPHERE_TYPES"
],
[
"strans_c",
"strans_circle_inverse"
],
[
"spoint_contained",
"spoint_contained_by_circle_com"
],
[
"scircle_con",
"scircle_contained_by_circle"
],
[
"MYSQL",
"MYSQL_SPHERE_POINT"
],
[
"mem",
"memBuf1"
],
[
"argT",
"argType0"
],
[
"MYS",
"MYSQL_SPHERE_UNKNOWN"
],
[
"gourpe",
"groupedAndTree"
],
[
"grout",
"groupedAndTree"
],
[
"previ",
"previousNode"
],
[
"found",
"foundAnd"
],
[
"prev",
"previousNode"
],
[
"array_ke",
"array_key_exists"
],
[
"sampC",
"sampClientTracker"
],
[
"scr",
"scriptName"
],
[
"execu",
"executionDuration"
],
[
"Uws_Model",
"Uws_Model_Resource_JobSummaryType"
],
[
"Uws",
"Uws_Model_Resource_JobSummaryType"
],
[
"esca",
"escapedString"
],
[
"combin",
"combinedQuery"
],
[
"comb",
"combinedQuery"
],
[
"str_re",
"str_replace"
],
[
"_",
"_parseSqlAll_parseResourceName"
],
[
"escapedMu",
"escapedMultiLineParseTrees"
],
[
"setDest",
"setDestructTimeImpl"
],
[
"request",
"requestParams"
],
[
"res",
"results"
],
[
"param_inf",
"param_info_element"
],
[
"cond",
"cond_push_fields2"
],
[
"NULL",
"NULL"
],
[
"clo",
"closeParPos"
],
[
"publica",
"publication_role_id"
],
[
"_daiq",
"_daiquiri_cm_plan"
],
[
"actualQ",
"actualQuery"
],
[
"strp",
"strpos"
],
[
"multiLin",
"multiLineUsedDBs"
],
[
"_che",
"_checkTableDBACL"
],
[
"mult",
"multiLineUsedDBs"
],
[
"multi",
"multilineUsedDBs"
],
[
"parseSql",
"parseSqlAll_getColsMysqlii"
],
[
"_get",
"_getDownloadStatus"
],
[
"download",
"downloadPoll"
],
[
"down",
"downloadPoll"
],
[
"dump",
"dump phpZendDump"
],
[
"expla",
"explainSQL"
],
[
"planT",
"planTypes"
],
[
"box",
"boxConv double"
],
[
"HKE",
"HKEY_ERR_OK macro"
],
[
"HKEY_",
"HKEY_ERR_OK macro"
],
[
"dimI",
"dimIdx2 int32_t"
],
[
"getHi",
"getHilbertKey(const int32_t m, const double boxSize, const int32_t dim, const double *point) uint64_t"
],
[
"getH",
"getHilbertKey(const int32_t m, const double boxSize, const int32_t dim, const double *point) uint64_t"
],
[
"OPT_VO",
"OPT_VOTABLE_BINARY2 macro"
],
[
"OPT_VOT",
"OPT_VOTABLE_BINARY2 macro"
],
[
"OPT_VOTABL",
"OPT_VOTABLE_TABLEDATA macro"
],
[
"INT_MAX",
"INT_MAX32 macro"
],
[
"lenB",
"lenBase64Overflow int"
],
[
"swap",
"swapByteOrder16(unsigned short *us) void"
],
[
"lenBu",
"lenBuffer int"
],
[
"vo",
"voTableBinCastFieldToBinary(char *buffer, int lenBuff, char *value, int len, MYSQL_FIELD *field) int"
],
[
"buff",
"buffer char *"
],
[
"MYSQL_TYPE_DATE",
"MYSQL_TYPE_DATETIME enum enum_field_types"
],
[
"DYN",
"DYNAMIC_STRING typedef"
],
[
"MYSQL_TYPE_TIME",
"MYSQL_TYPE_TIMESTAMP enum enum_field_types"
],
[
"getVo",
"getVOTableType(char *typeStr, int len) const char *"
],
[
"http_send_con",
"http_send_content_type"
],
[
"http_post",
"http_post_fields"
],
[
"format",
"format"
],
[
"quota",
"quotaStr"
],
[
"resultTable",
"resultTableName"
],
[
"tab",
"tableName"
],
[
"QUE",
"QUEUE_PENDING enum_queue_status"
],
[
"paqu",
"paqu_validateSQL"
],
[
"status",
"statusIndex"
],
[
"Ex",
"Exception"
],
[
"queue",
"queueGroup"
],
[
"drop",
"dropdown"
],
[
"max",
"maxVal"
],
[
"button",
"buttons-radio"
],
[
"Zend_Form_Elemen",
"Zend_Form_Element_Button (class)"
],
[
"clean",
"cleanMultiline"
],
[
"clea",
"cleanMultiline"
],
[
"user",
"userDBAdapter"
],
[
"sql",
"sqloptions"
],
[
"or",
"order"
],
[
"fetch",
"fetchQueues"
],
[
"Query_Mod",
"Query_Model_DbTable_JobsPaquQQueue"
],
[
"array_key",
"array_key_exists"
]
]
},
"buffers":
[
{
"file": "test/test/poly.sql",
"settings":
{
"buffer_size": 31416,
"line_ending": "Unix"
}
},
{
"file": "src/serialiser.cc",
"settings":
{
"buffer_size": 11045,
"line_ending": "Unix"
}
},
{
"settings":
{
"buffer_size": 0,
"line_ending": "Unix"
}
},
{
"file": "src/serialiser_helper.h",
"settings":
{
"buffer_size": 1245,
"line_ending": "Unix"
}
},
{
"file": "src/udf_sphere_ellipse.cc",
"settings":
{
"buffer_size": 41215,
"line_ending": "Unix"
}
},
{
"file": "src/udf_sphere_polygon.cc",
"settings":
{
"buffer_size": 53812,
"line_ending": "Unix"
}
},
{
"file": "src/udf_sphere_path.cc",
"settings":
{
"buffer_size": 45805,
"line_ending": "Unix"
}
},
{
"contents": "Searching 132 files for \"OUTPUT_DEG\"\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/globals.h:\n 12 /* *** GLOBAL DEFINITIONS *** */\n 13 #define OUTPUT_RAD 0 //!< output in radians\n 14: #define OUTPUT_DEG 1 //!< output in degrees\n 15 #define OUTPUT_DMS 2 //!< output in degrees, minutes, seconds\n 16 #define OUTPUT_HMS 3 //!< output in hour, minutes, seconds\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/output.cc:\n 61 \n 62 switch ( sphere_output ) {\n 63: case OUTPUT_DEG : \n 64 sprintf ( buffer , \"(%.*gd , %.*gd)\",\n 65 sphere_output_precision, RADIANS * sp->lng, \n ..\n 105 \n 106 switch ( sphere_output ) {\n 107: case OUTPUT_DEG : \n 108 sprintf ( buffer , \"<%s , %.*gd>\", \n 109 pointstr, sphere_output_precision, RADIANS * c->radius );\n ...\n 139 \n 140 switch ( sphere_output ) {\n 141: case OUTPUT_DEG : \n 142 sprintf ( buffer, \"<{ %.*gd , %.*gd }, %s , %.*gd>\",\n 143 sphere_output_precision, RADIANS * (e->rad[0]), \n ...\n 187 \n 188 switch ( sphere_output ) {\n 189: case OUTPUT_DEG : \n 190 sprintf ( out , \"( %s ), %.*gd\", \n 191 tstr, sphere_output_precision, RADIANS * sl->length );\n ...\n 233 rsec = 0.0;\n 234 switch ( sphere_output ) {\n 235: case OUTPUT_DEG : \n 236 sprintf ( &buf[0] , \"%.*gd\", \n 237 sphere_output_precision, RADIANS * val[i].lng );\n\n6 matches across 2 files\n\n\nSearching 132 files for \"MARIA\"\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/README:\n 1 +-----------------------------------------------------------------------------+\n 2: | mysql_sphere 0.1 for MySQL 5.5 and MariaDB |\n 3 +-----------------------------------------------------------------------------+\n 4 \n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/index.html:\n 15 <span class=\"application\">mysql_sphere</span> provides spherical data\n 16 types, functions, and operators for\n 17: <span class=\"application\"><a href=\"http://www.mysql.com/\">MySQL</a> and <a href=\"https://mariadb.org/\">MariaDB</a></span>. It is based on pgSphere 1.1.1 pre2 (see <a href=\"http://pgsphere.projects.pgfoundry.org/\" target=\"_top\">http://pgsphere.projects.pgfoundry.org/</a>) and constitutes a port of pgSphere\n 18: from PostgreSQL to MySQL/MariaDB. Indexing is not yet supported, due to the unextensibility of indexing in MySQL.\n 19 </p><p>\n 20 The project is hosted at <a href=\"https://github.com/adrpar/mysql_sphere/\" target=\"_top\"><i class=\"citetitle\">github.com</i></a>.\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/installation.html:\n 101 >mysql_sphere</SPAN\n 102 > is not part of the \n 103: MySQL or MariaDB software. \n 104 You can download it from the <SPAN\n 105 CLASS=\"application\"\n ...\n 127 > You will need MySQL\n 128 5.5 or above. We assume that you have\n 129: MySQL or MariaDB already compiled and\n 130 installed. Please note: Depending on your system configuration mostly you have to be logged in as the system\n 131 superuser.\n ...\n 135 <ul>\n 136 <li>\n 137: the sources of your MySQL or MariaDB installation and\n 138 </li>\n 139 <li>\n ...\n 187 </PRE>.\n 188 \n 189: This should have copied the <span class=\"application\">mysql_sphere</span> plugin into the according MySQL / MariaDB plugin directory. If not, then\n 190: you need to do so manually. The next step will register the plugin with MySQL / MariaDB. For this, you invoke\n 191 \n 192 <PRE\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/types.html:\n 103 <SPAN\n 104 CLASS=\"application\"\n 105: >MySQL / MariaDB</SPAN\n 106 >. This is achieved by storing the according data types as base64 encoded binary BLOBs. I.e. in order\n 107 to store mysql_sphere objects, you need to store them in <TT\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/whatis.html:\n 92 >mysql_sphere</SPAN\n 93 > is an extra module for\n 94: MySQL/MariaDB\n 95 which adds spherical data\n 96 types. It provides:\n ..\n 138 > Hence, you can do (not yet very fast) search and analysis for objects with\n 139 spherical attributes as used in geographical, astronomical, or\n 140: other applications using MySQL/MariaDB. \n 141 For instance, you can manage data of geographical objects around\n 142 the world and astronomical data like star and other catalogs\n ...\n 148 ><P\n 149 > This set of MySQL functions is based on the pgSphere module and provides\n 150: a port of pgSphere for MySQL/MariaDB. Due to differences/limitations of MySQL, there are differences\n 151 to the syntax compared to pgSphere. MySQL does not provide operator overloading, thus all operators are\n 152 transformed to functions.</P><P> The aim of <SPAN\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/x18.html:\n 94 <SPAN\n 95 CLASS=\"application\"\n 96: >MySQL/MariaDB</SPAN\n 97 > which adds spherical data\n 98 types. It provides:\n ..\n 153 ><P\n 154 > This set of MySQL functions is based on the pgSphere module and provides\n 155: a port of pgSphere for MySQL/MariaDB. Due to differences/limitations of MySQL, there are differences\n 156 to the syntax compared to pgSphere. MySQL does not provide operator overloading, thus all operators are\n 157 transformed to functions.</P><P> The aim of <SPAN\n\n/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/x44.html:\n 102 > is not part of the <SPAN\n 103 CLASS=\"application\"\n 104: >MySQL ir MariaDB</SPAN\n 105 > software. \n 106 You can download it from the <SPAN\n ...\n 134 <SPAN\n 135 CLASS=\"application\"\n 136: >MySQL or MariaDB</SPAN\n 137 > already compiled and\n 138 installed. Please note: Depending on your system configuration mostly you have to be logged in as the system\n ...\n 140 </P\n 141 ><P\n 142: > To compile mysql_sphere, you will need the sources of your MySQL or MariaDB installation.\n 143 </p> \n 144 <p>To compile <SPAN\n ...\n 252 >.\n 253 \n 254: This should have copied the mysql_sphere pluging into the according MySQL / MariaDB plugin directory. If you\n 255: you need to do so manually. The next step will register the plugin with MySQL / MariaDB. For this, you invoke\n 256 \n 257 <TABLE\n\n20 matches across 7 files\n",
"settings":
{
"buffer_size": 6697,
"line_ending": "Unix",
"name": "Find Results",
"scratch": true
}
},
{
"file": "src/globals.h",
"settings":
{
"buffer_size": 694,
"line_ending": "Unix"
}
},
{
"file": "src/udf_sphere_operators.cc",
"settings":
{
"buffer_size": 65679,
"line_ending": "Unix"
}
},
{
"file": "src/udf_sphere_point.cc",
"settings":
{
"buffer_size": 8711,
"line_ending": "Unix"
}
},
{
"file": "README",
"settings":
{
"buffer_size": 1327,
"line_ending": "Unix"
}
},
{
"file": "test/setup/test_spherepath.sql",
"settings":
{
"buffer_size": 4165,
"line_ending": "Unix"
}
},
{
"file": "NOTICE",
"settings":
{
"buffer_size": 2635,
"line_ending": "Unix"
}
},
{
"file": "src/udf_sphere_box.cc",
"settings":
{
"buffer_size": 67951,
"line_ending": "Unix"
}
}
],
"build_system": "",
"command_palette":
{
"height": 392.0,
"selected_items":
[
[
"tab",
"Indentation: Convert to Tabs"
],
[
"tabs",
"Indentation: Convert to Tabs"
],
[
"format",
"Format Code"
],
[
"Tab",
"Indentation: Convert to Tabs"
],
[
"comm",
"Toggle Comment"
],
[
"Tabs",
"View: Toggle Tabs"
],
[
"ta",
"Indentation: Convert to Tabs"
],
[
"comment",
"Toggle Comment"
],
[
"Package",
"Package Control: Upgrade Package"
],
[
"package",
"Package Control: Upgrade Package"
],
[
"packa",
"Package Control: Upgrade Package"
],
[
"inden",
"Indentation: Convert to Tabs"
],
[
"inde",
"Indentation: Convert to Tabs"
],
[
"in",
"Indentation: Convert to Tabs"
],
[
"Packa",
"Package Control: Upgrade Package"
],
[
"Pack",
"Package Control: Discover Packages"
],
[
"diff",
"Set Syntax: Diff"
],
[
"Pac",
"Package Control: Upgrade Package"
],
[
"pack",
"Package Control: Upgrade Package"
],
[
"for",
"Format: Php"
],
[
"Pcak",
"Package Control: Upgrade Package"
],
[
"Pacak",
"Package Control: Upgrade Package"
],
[
"Paca",
"Package Control: Install Package"
],
[
"Pacakge",
"Package Control: Install Package"
],
[
"pak",
"Package Control: Upgrade Package"
],
[
"rein",
"Indentation: Reindent Lines"
],
[
"REINDE",
"Indentation: Reindent Lines"
],
[
"packag",
"Package Control: Upgrade Package"
],
[
"package ",
"Package Control: Install Package"
],
[
"pakca",
"Package Control: Install Package"
],
[
"Package In",
"Package Control: Install Package"
],
[
"Packaage",
"Package Control: Install Package"
],
[
"Pacake",
"Package Control: Install Package"
]
],
"width": 593.0
},
"console":
{
"height": 146.0,
"history":
[
"import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to finish installation')"
]
},
"distraction_free":
{
"menu_visible": true,
"show_minimap": false,
"show_open_files": false,
"show_tabs": false,
"side_bar_visible": false,
"status_bar_visible": false
},
"file_history":
[
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/poly.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/vector3d.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/vector3d.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/box.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/polygon.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/polygon.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/point.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/point.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/path.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/path.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/output.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/output.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/line.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/line.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/globals.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/euler.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/euler.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/ellipse.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/ellipse.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/circle.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_area.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_center.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_circum.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_length.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_swap.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_npoints.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/circle.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/box.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_sstr.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_line.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_circle.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_euler.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_ellipse.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_helpers.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_polygon.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/serialiser.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/CMakeLists.txt",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/install_udfs.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/README",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/x18.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/x44.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/x1240.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/types.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/operators.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/indices.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/index.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_box.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/deinstall_udfs.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/appendixes.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/construct.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/examples.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/doc/funcs.html",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_operators.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/test/path.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/points.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/path.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_point.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/line.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/euler.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_path.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/test/circle_extended.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/test/ellipse.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/ellipse.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/setup/test_spherecircle.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/setup/test_spherepoint.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_dist.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/setup/test_spherebox.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/setup/test_spherepath.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/setup/test_spherepolygon.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/test/circle.sql",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/circle.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/test/expected/box.sql.out",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/types.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/serialiser.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/util.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sbuffer.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/serialiser_helper.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/box.ccpend",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/udf_sphere_line_tmp.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/.gitignore",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sbuffer.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sscan.l",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sscan.cc",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sparse.y",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sparse.h",
"/home/adrpar/Documents/eScience/Tools/mysql_sphere/src/sparse.cc",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/views/scripts/tables/show.phtml",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/views/scripts/databases/show.phtml",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/views/scripts/columns/show.phtml",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/client/js/daiquiri_browser.js",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/Wordpress/plugin/daiquiri_shortcodes.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/controllers/DatabasesController.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/controllers/TablesController.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/PaquProcessor.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/client/css/daiquiri_table.css",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/models/Viewer.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/client/js/daiquiri_query.js",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/client/js/daiquiri_table.js",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/files/models/Files.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/client/css/daiquiri_common.css",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/models/Columns.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/paqu/src/parseSqlAll.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/controllers/ColumnsController.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/models/Resource/Columns.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/controllers/IndexController.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/Wordpress/plugin/daiquiri.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/models/Databases.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/data/models/Tables.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/Daiquiri/Auth.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/views/scripts/index/index.phtml",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/SimpleQueue.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Examples.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/controllers/IndexController.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/Daiquiri/Acl.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Init.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/Processing.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/views/scripts/_partials/sql-query.phtml",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/AbstractQueue.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/paqu/src/parallelQuery.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/paqu/src/queryPlanWriter.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/paqu/src/paraQuery.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/paqu/src/paraQueryFunc.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/MySQLProcessor.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/DirectProcessor.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/modules/query/models/Resource/PaquQQueue.php",
"/home/adrpar/Documents/eScience/multidark2/daiquiri/library/paqu/src/php-sql-creator2.php"
],
"find":
{
"height": 35.0
},
"find_in_files":
{
"height": 93.0,
"where_history":
[
"*",
"udf*",
"*",
"*.php",
"*.js",
"*.php",
"*.*",
"*.php",
"",
"*.php",
"*.js",
"*",
"*.js",
"*.php",
"",
"*",
"*.php",
"*",
"*.php",
"*",
"*.php",
"",
"*.php",
""
]
},
"find_state":
{
"case_sensitive": false,
"find_history":
[
" \\",
"TAGIDEND",
"TAGIDSTART",
"SPHERETYPE",
"SEULER",
"SEuler",
"SEULER",
"SEuler",
"SPHERETYPE_LEN",
"SPHERETYPE",
"SPHERETYPE_LEN",
"SPHERETYPE",
"OBJECT",
"getObjType",
"MARIA",
"0\n",
"1\n",
"0\n",
"1\n",
"0\n",
"1\n",
"srcontainsl",
"1\nsrcontainsl",
"1\n",
"sstr",
"1\n",
"0\n",
"0",
"( ",
"return",
"OUTPUT_DEG",
"spherepoly_npts",
"( ",
"resultLine",
"scircle_contained_by_circle",
"MYSQL_UDF_CHK_SPHERETYPE_COM",
"MYSQL_UDF_CHK_SPHERETYPE",
"sbox_contains_line",
"sbox_overlap_circle",
"sbox_contains_box",
"sbox_cont_point",
"cont_",
"strans_path",
"sellipse_overlap_path",
"strans_poly",
"strans_ellipse",
"sline_overlap_circle_neg",
"sline_contains_point",
"sline_contains_point_com",
"strans_invert_deinit",
"stransform",
"sequal",
"slnotcontainsr",
"slnotcontainsr#",
"srnotcontainsl",
"sline_contains_point_com",
"spoint_contained_by_circle",
"contained",
"contai",
"spoint_contained_by_circle",
"strans_trans",
"strans_invert",
"GPL",
"min(",
"current_thd",
"MYSQL_UDF_CHK_SPHERETYPE",
"strans_invert",
"mysql_priv",
"mysql-sphere",
"pgSpher",
"sql",
"sbox_sw",
"axes",
"float8",
"sql>",
" sql>",
"SELECT",
"> sql> ",
" sql>",
"strans_circle_inverse",
"ellipse",
"circle",
"stransform",
"STransform",
"strans",
"strams",
"snotequal",
"sql",
" sql",
"sql",
"DEG",
"pgSphere",
" sql>",
"sql",
"DEG",
"%\"\n",
"Maria",
"pgSphere",
"http://pgsphere.projects.pgfoundry.org",
"index_files",
"fprintf",
"fprintf(stderr, ",
"fprintf (stderr, ",
"fprintf (stderr",
"radius must be not greater than 90 degrees",
"SELECT sstr(scircle( '< (1h 2m 30s , +1d 2m 30s), 90d >'));",
"1\n",
"0\n",
"SELECT spoly",
" );",
"; )",
"SELECT",
"); ) \n",
"; ) ",
"---",
"--",
"-----",
"----",
"---",
"--",
"-----",
"----",
"---",
"--",
"15d",
"sqeual",
"1",
"spoly_add_point_aggr"
],
"highlight": true,
"in_selection": false,
"preserve_case": true,
"regex": false,
"replace_history":
[
"mysql_sphere",
")')",
"spoint('(",
">')",
"sellipse('<",
"scircle",
"spoint",
"circle",
"point",
")' )",
"))' )",
">' )",
"sbox ( ",
"spoint ( ",
") VALUES (",
"(point)",
"> \" ));",
"INSERT INTO spherecircle (circle) VALUES (scircle(\" <(",
"",
"MYSQL_UDF_DEINIT_BUFFER()",
"MYSQL_UDF_CHK_SPHERETYPE",
"setSQL(array($shard_query))",
"paqu",
"<",
">",
"<",
">",
"<",
"processQueryWildcard",